You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
406 B
14 lines
406 B
7 years ago
|
ALTER TABLE attachments RENAME TO oldAttachments;
|
||
|
|
||
|
CREATE TABLE attachments (
|
||
6 years ago
|
id TEXT NOT NULL PRIMARY KEY,
|
||
|
cipher_uuid TEXT NOT NULL REFERENCES ciphers (uuid),
|
||
7 years ago
|
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;
|
||
|
|
||
6 years ago
|
DROP TABLE oldAttachments;
|