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