1
0
Fork 0
mirror of https://github.com/dani-garcia/vaultwarden.git synced 2025-09-09 03:02:42 +00:00

specify integer length to default in postgres in all migrations

This commit is contained in:
haras 2025-03-15 18:23:06 +01:00
commit f482040de5
12 changed files with 27 additions and 27 deletions

View file

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