mirror of
https://github.com/ViViDboarder/bitwarden_rs.git
synced 2024-11-01 02:46:37 +00:00
5 lines
206 B
SQL
5 lines
206 B
SQL
CREATE TABLE ciphers_collections (
|
|
cipher_uuid TEXT NOT NULL REFERENCES ciphers (uuid),
|
|
collection_uuid TEXT NOT NULL REFERENCES collections (uuid),
|
|
PRIMARY KEY (cipher_uuid, collection_uuid)
|
|
); |