class CreateHelpDismissedNotifications < ActiveRecord::Migration[6.0]
  def change
    create_table :help_dismissed_notifications do |t|
      t.references :user, type: :integer, null: false,
        foreign_key: { to_table: :Users, primary_key: :UserID }
      t.references :notification, null: false, foreign_key: { to_table: :help_notifications }
    end
  end
end
