2013-03-22 16:46:26 +00:00
|
|
|
class AddAutomaticToComments < ActiveRecord::Migration
|
|
|
|
def change
|
2014-01-21 04:51:49 +00:00
|
|
|
add_column :comments, :automatic, :boolean, default: false
|
2013-03-22 17:26:32 +00:00
|
|
|
|
|
|
|
add_index :comments, :commentable_type
|
|
|
|
add_index :comments, :automatic
|
|
|
|
add_index :comments, :commentable_id
|
2013-03-22 16:46:26 +00:00
|
|
|
end
|
|
|
|
end
|