2011-12-19 15:30:14 +00:00
|
|
|
class CreateComments < ActiveRecord::Migration
|
|
|
|
def self.up
|
|
|
|
create_table :comments do |t|
|
2014-03-14 17:41:49 +00:00
|
|
|
t.integer :commentable_id, references: nil
|
2011-12-19 15:30:14 +00:00
|
|
|
t.string :commentable_type
|
|
|
|
t.integer :user_id
|
|
|
|
t.text :body
|
|
|
|
|
|
|
|
t.timestamps
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.down
|
|
|
|
drop_table :comments
|
|
|
|
end
|
|
|
|
end
|