1
0
mirror of https://github.com/dani-garcia/vaultwarden.git synced 2024-11-13 14:32:44 +01:00
Vaultwarden/migrations/mysql/2018-05-08-161616_create_collection_cipher_map/up.sql

6 lines
221 B
MySQL
Raw Normal View History

2018-05-09 12:55:05 +02:00
CREATE TABLE ciphers_collections (
2019-05-20 21:12:41 +02:00
cipher_uuid VARCHAR(40) NOT NULL REFERENCES ciphers (uuid),
collection_uuid VARCHAR(40) NOT NULL REFERENCES collections (uuid),
2018-05-09 12:55:05 +02:00
PRIMARY KEY (cipher_uuid, collection_uuid)
2019-05-20 21:12:41 +02:00
);