Skip to content

Commit

Permalink
(fix) Remove NOT NULL constraint from encrypted_kms_key in ar_power_o…
Browse files Browse the repository at this point in the history
…f_attorney_requests_resolutions and ar_power_of_attorney_forms
  • Loading branch information
ojbucao committed Dec 20, 2024
1 parent 2913119 commit d43bff8
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
class RemoveNullConstraintFromEncryptedKmsKeyInArPowerOfAttorneyForms < ActiveRecord::Migration[7.2]
def change
change_column_null :ar_power_of_attorney_forms, :encrypted_kms_key, true
end
end
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
class RemoveNullConstraintFromEncryptedKmsKeyInArPowerOfAttorneyRequestResolutions < ActiveRecord::Migration[7.2]
def change
change_column_null :ar_power_of_attorney_request_resolutions, :encrypted_kms_key, true
end
end

0 comments on commit d43bff8

Please sign in to comment.