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

15 lines
415 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-20 19:12:41 +00:00
id VARCHAR(40) NOT NULL PRIMARY KEY,
cipher_uuid VARCHAR(40) 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-20 19:12:41 +00:00
DROP TABLE oldAttachments;