[BugFix] Fix Users not deletable because of foreign key reference (#300)

Fixes #297
This commit is contained in:
Sojan Jose
2019-11-27 09:01:39 +05:30
committed by Sony Mathew
parent 274ad381cb
commit cbf2d27b6b
3 changed files with 9 additions and 2 deletions

View File

@@ -0,0 +1,6 @@
class UpdateUserInviteForeignKey < ActiveRecord::Migration[6.0]
def change
remove_foreign_key :users, column: :inviter_id
add_foreign_key :users, :users, column: :inviter_id, on_delete: :nullify
end
end