Skip to content

Commit

Permalink
veteran_representatives Migration (#16377)
Browse files Browse the repository at this point in the history
* remove dob and ssn from veteran_representatives

* rubocop formatting

* rubocop formatting

* add data back to personal_information_log_schema

* move migration to another PR

* reset schema to master

* reset schema to master

* remove dob and ssn migration

* add ignored columns to vet rep

* remove ignore_columns
  • Loading branch information
stevenjcumming authored Apr 18, 2024
1 parent d1a5670 commit c3742cf
Show file tree
Hide file tree
Showing 2 changed files with 131 additions and 126 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
class RemoveDobAndSsnFromVeteranRepresentatives < ActiveRecord::Migration[7.1]
def change
safety_assured do
remove_column :veteran_representatives, :ssn_ciphertext, :text
remove_column :veteran_representatives, :dob_ciphertext, :text
remove_column :veteran_representatives, :encrypted_kms_key, :text
end
end
end
Loading

0 comments on commit c3742cf

Please sign in to comment.