rosa-build/db/migrate/20130319172358_add_automati...

10 lines
265 B
Ruby
Raw Normal View History

2013-03-22 16:46:26 +00:00
class AddAutomaticToComments < ActiveRecord::Migration
def change
add_column :comments, :automatic, :boolean, :default => false
add_index :comments, :commentable_type
add_index :comments, :automatic
add_index :comments, :commentable_id
2013-03-22 16:46:26 +00:00
end
end