bitwarden_rs/migrations/2018-05-08-161616_create_collection_cipher_map/up.sql

5 lines
206 B
MySQL
Raw Normal View History

2018-05-09 10:55:05 +00: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)
);