1
0
mirror of https://github.com/dani-garcia/vaultwarden.git synced 2024-09-22 18:31:31 +02:00
Vaultwarden/migrations/2018-05-25-232323_update_attachments_reference/up.sql

14 lines
406 B
MySQL
Raw Normal View History

2018-05-26 01:39:19 +02:00
ALTER TABLE attachments RENAME TO oldAttachments;
CREATE TABLE attachments (
id TEXT NOT NULL PRIMARY KEY,
cipher_uuid TEXT NOT NULL REFERENCES ciphers (uuid),
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;
DROP TABLE oldAttachments;