0
0
Fork 0
mirror of https://github.com/dani-garcia/vaultwarden synced 2024-07-05 12:08:38 +02:00
bitwarden_rs/migrations/sqlite/2018-05-08-161616_create_collection_cipher_map/up.sql

5 lines
206 B
MySQL
Raw Normal View History

2019-05-26 23:02:41 +02:00
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)
);