1
0
Fork 0
mirror of https://github.com/dani-garcia/vaultwarden.git synced 2025-07-23 04:28:19 +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,6 +1,6 @@
CREATE TABLE event (
uuid CHAR(36) NOT NULL PRIMARY KEY,
event_type INTEGER NOT NULL,
event_type INT4 NOT NULL,
user_uuid CHAR(36),
org_uuid CHAR(36),
cipher_uuid CHAR(36),
@ -8,7 +8,7 @@ CREATE TABLE event (
group_uuid CHAR(36),
org_user_uuid CHAR(36),
act_user_uuid CHAR(36),
device_type INTEGER,
device_type INT4,
ip_address TEXT,
event_date TIMESTAMP NOT NULL,
policy_uuid CHAR(36),