News

This the existing table in migration folder. class CreateArticles < ActiveRecord::Migration def change create_table :articles do |t| t.string :title t.text :text t.timestamps null: false end end end ...
Sometimes we are required to add a custom field in our database table for our extension in magento. For this purpose we will perform it with the installer. But before ...