rosa-build/db/migrate/20111216140849_create_comme...

18 lines
317 B
Ruby

# -*- encoding : utf-8 -*-
class CreateComments < ActiveRecord::Migration
def self.up
create_table :comments do |t|
t.integer :commentable_id
t.string :commentable_type
t.integer :user_id
t.text :body
t.timestamps
end
end
def self.down
drop_table :comments
end
end