socialforge/db/migrate/20140605003915_create_notif...

13 lines
303 B
Ruby
Raw Normal View History

2014-06-05 10:28:36 +08:00
class CreateNotificationcomments < ActiveRecord::Migration
def change
create_table :notificationcomments do |t|
t.string :notificationcommented_type
t.integer :notificationcommented_id
t.integer :author_id
t.text :notificationcomments
t.timestamps
end
end
end