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

17 lines
435 B
Ruby
Raw Normal View History

# frozen_string_literal:true
class CreateNotifications < ActiveRecord::Migration[4.2]
2015-05-05 03:10:25 +02:00
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