Retrospring/db/migrate/20141213182609_create_notif...

13 lines
253 B
Ruby
Raw Normal View History

class CreateNotifications < ActiveRecord::Migration[4.2]
2014-12-13 10:30:10 -08:00
def change
create_table :notifications do |t|
t.string :target_type
t.integer :target_id
t.integer :recipient_id
t.boolean :new
t.timestamps
end
end
end