From 70ac62bb78d07f11090816e97b8fd7dab1dfd081 Mon Sep 17 00:00:00 2001 From: Bryan Alexander Date: Mon, 18 Nov 2024 13:57:22 -0500 Subject: [PATCH] 92030: Pension IPF notification removal DB schema (#19441) --- .../20241112215714_drop_pension_ipf_notifications.rb | 5 +++++ db/schema.rb | 8 -------- 2 files changed, 5 insertions(+), 8 deletions(-) create mode 100644 db/migrate/20241112215714_drop_pension_ipf_notifications.rb diff --git a/db/migrate/20241112215714_drop_pension_ipf_notifications.rb b/db/migrate/20241112215714_drop_pension_ipf_notifications.rb new file mode 100644 index 00000000000..a0e57ec2868 --- /dev/null +++ b/db/migrate/20241112215714_drop_pension_ipf_notifications.rb @@ -0,0 +1,5 @@ +class DropPensionIpfNotifications < ActiveRecord::Migration[7.1] + def change + drop_table :pension_ipf_notifications, if_exists: true + end +end diff --git a/db/schema.rb b/db/schema.rb index a955bd62770..38e4e19a92a 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -11,7 +11,6 @@ # It's strongly recommended that you check this file into your version control system. ActiveRecord::Schema[7.1].define(version: 2024_11_14_213556) do - # These are extensions that must be enabled in order to support this database enable_extension "btree_gin" enable_extension "fuzzystrmatch" @@ -1011,13 +1010,6 @@ t.index ["va_profile_id", "dismissed"], name: "show_onsite_notifications_index" end - create_table "pension_ipf_notifications", force: :cascade do |t| - t.text "payload_ciphertext" - t.text "encrypted_kms_key" - t.datetime "created_at", null: false - t.datetime "updated_at", null: false - end - create_table "persistent_attachments", id: :serial, force: :cascade do |t| t.uuid "guid" t.string "type"