[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

@@ -10,7 +10,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema.define(version: 2019_11_24_091232) do
ActiveRecord::Schema.define(version: 2019_11_26_185833) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
@@ -224,5 +224,5 @@ ActiveRecord::Schema.define(version: 2019_11_24_091232) do
add_foreign_key "contact_inboxes", "contacts"
add_foreign_key "contact_inboxes", "inboxes"
add_foreign_key "users", "users", column: "inviter_id"
add_foreign_key "users", "users", column: "inviter_id", on_delete: :nullify
end