diff options
Diffstat (limited to 'activerecord')
-rw-r--r-- | activerecord/lib/active_record/migration.rb | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/activerecord/lib/active_record/migration.rb b/activerecord/lib/active_record/migration.rb index b6213f4e1d..4d099e057a 100644 --- a/activerecord/lib/active_record/migration.rb +++ b/activerecord/lib/active_record/migration.rb @@ -36,11 +36,11 @@ module ActiveRecord # class AddSystemSettings < ActiveRecord::Migration # def self.up # create_table :system_settings do |t| - # t.column :name, :string - # t.column :label, :string - # t.column :value, :text - # t.column :type, :string - # t.column :position, :integer + # t.string :name + # t.string :label + # t.text :value + # t.string :type + # t.integer :position # end # # SystemSetting.create :name => "notice", :label => "Use notice?", :value => 1 |