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:
parent
99058d19c3
commit
f482040de5
12 changed files with 27 additions and 27 deletions
|
@ -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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue