1
0
Fork 0
mirror of https://github.com/dani-garcia/vaultwarden.git synced 2025-07-07 04:54:57 +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
parent 99058d19c3
commit f482040de5
12 changed files with 27 additions and 27 deletions

View file

@ -4,9 +4,9 @@ CREATE TABLE emergency_access (
grantee_uuid CHAR(36) REFERENCES users (uuid),
email VARCHAR(255),
key_encrypted TEXT,
atype INTEGER NOT NULL,
status INTEGER NOT NULL,
wait_time_days INTEGER NOT NULL,
atype INT4 NOT NULL,
status INT4 NOT NULL,
wait_time_days INT4 NOT NULL,
recovery_initiated_at TIMESTAMP,
last_notification_at TIMESTAMP,
updated_at TIMESTAMP NOT NULL,