rails migration populate data code example
Example: rails migration populate data
class AddSystemSettings < ActiveRecord::Migration
def change
create_table :system_settings do |t|
t.string :name
t.integer :position
end
# populate the table
SystemSetting.create :name => "notice"
end
end