bitwarden_rs/migrations/mysql/2018-05-08-161616_create_co.../up.sql

6 lines
221 B
MySQL
Raw Normal View History

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