1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-28 09:24:24 +01:00
fab-manager/db/migrate/20140527092045_create_notifications.rb

17 lines
435 B
Ruby

# frozen_string_literal:true
class CreateNotifications < ActiveRecord::Migration[4.2]
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