0
0
Fork 0
mirror of https://github.com/dani-garcia/vaultwarden synced 2024-05-23 15:23:49 +02:00
bitwarden_rs/migrations/postgresql/2021-03-11-190243_add_sends/up.sql
Daniel García 8da5b99482
Send API
2021-03-14 23:35:55 +01:00

25 lines
735 B
SQL

CREATE TABLE sends (
uuid CHAR(36) NOT NULL PRIMARY KEY,
user_uuid CHAR(36) REFERENCES users (uuid),
organization_uuid CHAR(36) REFERENCES organizations (uuid),
name TEXT NOT NULL,
notes TEXT,
atype INTEGER NOT NULL,
data TEXT NOT NULL,
key TEXT NOT NULL,
password_hash BYTEA,
password_salt BYTEA,
password_iter INTEGER,
max_access_count INTEGER,
access_count INTEGER NOT NULL,
creation_date TIMESTAMP NOT NULL,
revision_date TIMESTAMP NOT NULL,
expiration_date TIMESTAMP,
deletion_date TIMESTAMP NOT NULL,
disabled BOOLEAN NOT NULL
);