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

Remove NOT NULL constraint from encrypted_kms_key in ar_power_of_attorney_request_resolutions and ar_power_of_attorney_forms #19982

Merged
merged 3 commits into from
Dec 20, 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
6 changes: 3 additions & 3 deletions db/schema.rb

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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
Loading