1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-29 10:24:20 +01:00
fab-manager/db/migrate/20140527092045_create_notifications.rb
2016-03-23 18:39:41 +01:00

15 lines
400 B
Ruby

class CreateNotifications < ActiveRecord::Migration
def change
create_table :notifications do |t|
t.integer :receiver_id
t.references :attached_object, polymorphic: true
t.integer :notification_type_id
t.boolean :is_read, default: false
t.timestamps
end
add_index :notifications, :receiver_id
add_index :notifications, :notification_type_id
end
end