bitwarden_rs/migrations/mysql/2020-03-13-205045_add_policy_table/up.sql

10 lines
258 B
MySQL
Raw Normal View History

2020-03-14 12:22:30 +00:00
CREATE TABLE org_policies (
uuid CHAR(36) NOT NULL PRIMARY KEY,
org_uuid CHAR(36) NOT NULL REFERENCES organizations (uuid),
atype INTEGER NOT NULL,
enabled BOOLEAN NOT NULL,
data TEXT NOT NULL,
UNIQUE (org_uuid, atype)
);