@@ -34,9 +34,9 @@ def migrate_passwords
34
34
deletable_by_viewer : password . deletable_by_viewer ,
35
35
retrieval_step : password . retrieval_step ,
36
36
expired_on : password . expired_on ,
37
- payload_ciphertext : password . payload_ciphertext ,
38
- note_ciphertext : password . note_ciphertext ,
39
- passphrase_ciphertext : password . passphrase_ciphertext ,
37
+ payload : password . payload ,
38
+ note : password . note ,
39
+ passphrase : password . passphrase ,
40
40
name : password . name ,
41
41
user_id : password . user_id ,
42
42
created_at : password . created_at ,
@@ -83,9 +83,9 @@ def migrate_file_pushes
83
83
deletable_by_viewer : file_push . deletable_by_viewer ,
84
84
retrieval_step : file_push . retrieval_step ,
85
85
expired_on : file_push . expired_on ,
86
- payload_ciphertext : file_push . payload_ciphertext ,
87
- note_ciphertext : file_push . note_ciphertext ,
88
- passphrase_ciphertext : file_push . passphrase_ciphertext ,
86
+ payload : file_push . payload ,
87
+ note : file_push . note ,
88
+ passphrase : file_push . passphrase ,
89
89
name : file_push . name ,
90
90
user_id : file_push . user_id ,
91
91
created_at : file_push . created_at ,
@@ -141,9 +141,9 @@ def migrate_urls
141
141
deletable_by_viewer : nil , # URLs cannot be preemptively deleted by end users ever
142
142
retrieval_step : url . retrieval_step ,
143
143
expired_on : url . expired_on ,
144
- payload_ciphertext : url . payload_ciphertext ,
145
- note_ciphertext : url . note_ciphertext ,
146
- passphrase_ciphertext : url . passphrase_ciphertext ,
144
+ payload : url . payload ,
145
+ note : url . note ,
146
+ passphrase : url . passphrase ,
147
147
name : url . name ,
148
148
user_id : url . user_id ,
149
149
created_at : url . created_at ,
0 commit comments