Spiegel von
https://github.com/dani-garcia/vaultwarden.git
synchronisiert 2024-11-22 05:10:29 +01:00
Fix reference in attachments table
Dieser Commit ist enthalten in:
Ursprung
ca01fa1419
Commit
9b017bbbb9
2 geänderte Dateien mit 14 neuen und 0 gelöschten Zeilen
14
migrations/2018-05-25-232323_update_attachments_reference/up.sql
Normale Datei
14
migrations/2018-05-25-232323_update_attachments_reference/up.sql
Normale Datei
|
@ -0,0 +1,14 @@
|
||||||
|
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;
|
Laden …
In neuem Issue referenzieren