0
0
Fork 0
mirror of https://github.com/dani-garcia/vaultwarden synced 2024-09-24 11:28:56 +02:00
bitwarden_rs/migrations/2018-05-25-232323_update_attachments_reference/up.sql

15 lines
415 B
MySQL
Raw Normal View History

2018-05-26 01:39:19 +02:00
ALTER TABLE attachments RENAME TO oldAttachments;
CREATE TABLE attachments (
2019-05-20 21:12:41 +02:00
id VARCHAR(40) NOT NULL PRIMARY KEY,
cipher_uuid VARCHAR(40) NOT NULL REFERENCES ciphers (uuid),
2018-05-26 01:39:19 +02:00
file_name TEXT NOT NULL,
file_size INTEGER NOT NULL
);
INSERT INTO attachments (id, cipher_uuid, file_name, file_size)
SELECT id, cipher_uuid, file_name, file_size FROM oldAttachments;
2019-05-20 21:12:41 +02:00
DROP TABLE oldAttachments;