Gab-Social/db/migrate/20191201205006_add_foreign_key_constraint_to_user_last_read_notification.rb

6 lines
224 B
Ruby

class AddForeignKeyConstraintToUserLastReadNotification < ActiveRecord::Migration[5.2]
def change
add_foreign_key :users, :notifications, column: :last_read_notification, on_delete: :nullify, validate: false
end
end