From e1225f8a4e2e263b47605d292c22c1f55bcb19df Mon Sep 17 00:00:00 2001 From: OJ Bucao Date: Fri, 20 Dec 2024 09:49:45 -0800 Subject: [PATCH] (fix) Update schema.rb to reflect removal of NOT NULL constraint from encrypted_kms_key --- db/schema.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/db/schema.rb b/db/schema.rb index 824356b04a7..357f83dd6a3 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[7.2].define(version: 2024_12_13_173113) do +ActiveRecord::Schema[7.2].define(version: 2024_12_20_164548) do # These are extensions that must be enabled in order to support this database enable_extension "btree_gin" enable_extension "fuzzystrmatch" @@ -271,7 +271,7 @@ create_table "ar_power_of_attorney_forms", id: :uuid, default: -> { "gen_random_uuid()" }, force: :cascade do |t| t.uuid "power_of_attorney_request_id", null: false - t.text "encrypted_kms_key", null: false + t.text "encrypted_kms_key" t.text "data_ciphertext", null: false t.string "city_bidx", null: false t.string "state_bidx", null: false @@ -295,7 +295,7 @@ t.string "resolving_type", null: false t.uuid "resolving_id", null: false t.text "reason_ciphertext" - t.text "encrypted_kms_key", null: false + t.text "encrypted_kms_key" t.datetime "created_at", null: false t.index ["power_of_attorney_request_id"], name: "idx_on_power_of_attorney_request_id_fd7d2d11b1", unique: true t.index ["resolving_type", "resolving_id"], name: "unique_resolving_type_and_id", unique: true