bitwarden_rs/migrations/sqlite/2018-05-25-232323_update_at.../up.sql

14 lines
406 B
MySQL
Raw Normal View History

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