Skip to content
Draft
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
class UpdateEncryptedEmailComment < ActiveRecord::Migration[8.0]
def change
change_column_comment :email_addresses, :encrypted_email, "sensitive=false"
end
end
2 changes: 1 addition & 1 deletion db/schema.rb
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@
t.datetime "confirmed_at", precision: nil, comment: "sensitive=false"
t.datetime "confirmation_sent_at", precision: nil, comment: "sensitive=false"
t.string "email_fingerprint", default: "", null: false, comment: "sensitive=false"
t.string "encrypted_email", default: "", null: false, comment: "sensitive=true"
t.string "encrypted_email", default: "", null: false, comment: "sensitive=false"
t.datetime "created_at", precision: nil, null: false, comment: "sensitive=false"
t.datetime "updated_at", precision: nil, null: false, comment: "sensitive=false"
t.datetime "last_sign_in_at", precision: nil, comment: "sensitive=false"
Expand Down