1
0
Fork 0
vaultwarden-test/migrations/mysql/2018-05-08-161616_create_collection_cipher_map/up.sql
2019-05-27 17:20:20 +02:00

6 Zeilen
215 B
SQL

CREATE TABLE ciphers_collections (
cipher_uuid CHAR(36) NOT NULL REFERENCES ciphers (uuid),
collection_uuid CHAR(36) NOT NULL REFERENCES collections (uuid),
PRIMARY KEY (cipher_uuid, collection_uuid)
);