mirror of
https://github.com/ViViDboarder/bitwarden_rs.git
synced 2024-11-01 10:56:39 +00:00
10 lines
260 B
MySQL
10 lines
260 B
MySQL
|
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)
|
||
|
);
|