mirror of
https://github.com/ViViDboarder/bitwarden_rs.git
synced 2024-11-05 04:46:36 +00:00
6 lines
221 B
SQL
6 lines
221 B
SQL
CREATE TABLE ciphers_collections (
|
|
cipher_uuid VARCHAR(40) NOT NULL REFERENCES ciphers (uuid),
|
|
collection_uuid VARCHAR(40) NOT NULL REFERENCES collections (uuid),
|
|
PRIMARY KEY (cipher_uuid, collection_uuid)
|
|
);
|