Newer
Older
dmpopidor / db / migrate / 20180412092647_create_notification_acknowledgements.rb
@Quentin Sonrel Quentin Sonrel on 16 May 2018 306 bytes Implemented Notifications
class CreateNotificationAcknowledgements < ActiveRecord::Migration
  def change
    create_table :notification_acknowledgements do |t|
      t.belongs_to :user, foreign_key: true, index: true
      t.belongs_to :notification, foreign_key: true, index: true

      t.timestamps null: true
    end
  end
end