Spiegel von
https://github.com/dani-garcia/vaultwarden.git
synchronisiert 2024-11-04 02:18:00 +01:00
Merge pull request #29 from mprasil/attachments_fix
Fix reference in attachments table
Dieser Commit ist enthalten in:
Commit
d69d4d0d30
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