From 2229b8e7828356335d98fe48afd613b69e724a73 Mon Sep 17 00:00:00 2001 From: Karina Kwiatek Date: Thu, 14 Jul 2022 23:39:04 +0200 Subject: [PATCH] Set on deletes for foreign keys --- ...0714211614_set_on_delete_for_anonymous_blocks.rb | 13 +++++++++++++ .../20220714212414_set_on_delete_for_mute_rules.rb | 10 ++++++++++ db/schema.rb | 8 ++++---- 3 files changed, 27 insertions(+), 4 deletions(-) create mode 100644 db/migrate/20220714211614_set_on_delete_for_anonymous_blocks.rb create mode 100644 db/migrate/20220714212414_set_on_delete_for_mute_rules.rb diff --git a/db/migrate/20220714211614_set_on_delete_for_anonymous_blocks.rb b/db/migrate/20220714211614_set_on_delete_for_anonymous_blocks.rb new file mode 100644 index 00000000..ef1668d8 --- /dev/null +++ b/db/migrate/20220714211614_set_on_delete_for_anonymous_blocks.rb @@ -0,0 +1,13 @@ +# frozen_string_literal: true + +class SetOnDeleteForAnonymousBlocks < ActiveRecord::Migration[6.1] + def change + change_table :anonymous_blocks do |t| + t.remove_references :user + t.references :user, null: false, foreign_key: true, on_delete: :cascade + + t.remove_references :question + t.references :question, null: true, foreign_key: true, on_delete: :null + end + end +end diff --git a/db/migrate/20220714212414_set_on_delete_for_mute_rules.rb b/db/migrate/20220714212414_set_on_delete_for_mute_rules.rb new file mode 100644 index 00000000..84bb698f --- /dev/null +++ b/db/migrate/20220714212414_set_on_delete_for_mute_rules.rb @@ -0,0 +1,10 @@ +# frozen_string_literal: true + +class SetOnDeleteForMuteRules < ActiveRecord::Migration[6.1] + def change + change_table :mute_rules do |t| + t.remove_references :user + t.references :user, null: false, foreign_key: true, on_delete: :cascade + end + end +end diff --git a/db/schema.rb b/db/schema.rb index 8101d9d9..852fa608 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -10,7 +10,7 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema.define(version: 2022_07_08_204200) do +ActiveRecord::Schema.define(version: 2022_07_14_212414) do # These are extensions that must be enabled in order to support this database enable_extension "plpgsql" @@ -28,11 +28,11 @@ ActiveRecord::Schema.define(version: 2022_07_08_204200) do end create_table "anonymous_blocks", force: :cascade do |t| - t.bigint "user_id", null: false t.string "identifier" - t.bigint "question_id", null: false t.datetime "created_at", precision: 6, null: false t.datetime "updated_at", precision: 6, null: false + t.bigint "user_id", null: false + t.bigint "question_id" t.index ["identifier"], name: "index_anonymous_blocks_on_identifier" t.index ["question_id"], name: "index_anonymous_blocks_on_question_id" t.index ["user_id"], name: "index_anonymous_blocks_on_user_id" @@ -122,10 +122,10 @@ ActiveRecord::Schema.define(version: 2022_07_08_204200) do end create_table "mute_rules", id: :bigint, default: -> { "gen_timestamp_id('mute_rules'::text)" }, force: :cascade do |t| - t.bigint "user_id" t.string "muted_phrase" t.datetime "created_at", null: false t.datetime "updated_at", null: false + t.bigint "user_id", null: false t.index ["user_id"], name: "index_mute_rules_on_user_id" end