add argon2 kdf fields

This commit is contained in:
Helmut K. C. Tessarek 2023-01-31 21:26:23 -05:00
parent 9366e31452
commit 68bcc7a4b8
No known key found for this signature in database
GPG key ID: BE0985349D44DD00
16 changed files with 131 additions and 25 deletions
migrations/postgresql/2023-01-31-222222_add_argon2

View file

@ -0,0 +1,7 @@
ALTER TABLE users
ADD COLUMN
client_kdf_memory INTEGER DEFAULT NULL;
ALTER TABLE users
ADD COLUMN
client_kdf_parallelism INTEGER DEFAULT NULL;