16 lines
248 B
Ruby
16 lines
248 B
Ruby
class CreateComments < ActiveRecord::Migration
|
|
def self.up
|
|
create_table :comments do |t|
|
|
t.text :body
|
|
t.string :author
|
|
t.integer :post_id
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
|
|
def self.down
|
|
drop_table :comments
|
|
end
|
|
end
|