Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: add on delete constraint on reference users - comments #251

Merged
merged 2 commits into from
Feb 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
class AddOnCascadeDeleteOnComments < ActiveRecord::Migration[7.0]
def change
remove_foreign_key :comments, :users
add_foreign_key :comments, :users, on_delete: :nullify
end
end
4 changes: 2 additions & 2 deletions db/schema.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#
# It's strongly recommended that you check this file into your version control system.

ActiveRecord::Schema[7.0].define(version: 2023_09_14_120530) do
ActiveRecord::Schema[7.0].define(version: 2024_02_16_103644) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"

Expand Down Expand Up @@ -218,7 +218,7 @@
add_foreign_key "answers", "pias"
add_foreign_key "attachments", "pias"
add_foreign_key "comments", "pias"
add_foreign_key "comments", "users"
add_foreign_key "comments", "users", on_delete: :nullify
add_foreign_key "evaluations", "pias"
add_foreign_key "knowledges", "knowledge_bases"
add_foreign_key "measures", "pias"
Expand Down
Loading