1
0
Fork 0
mirror of https://github.com/dani-garcia/vaultwarden.git synced 2025-08-13 14:33:52 +00:00

Improve file limit handling

This commit is contained in:
Daniel García 2024-01-12 23:17:33 +01:00
commit caca696f56
No known key found for this signature in database
GPG key ID: FC8A7D14C3CD543A
26 changed files with 271 additions and 96 deletions

View file

@ -0,0 +1 @@
ALTER TABLE attachments MODIFY file_size BIGINT NOT NULL;

View file

@ -0,0 +1 @@
ALTER TABLE attachments MODIFY file_size BIGINT NOT NULL;

View file

@ -0,0 +1 @@
-- Integer size in SQLite is already i64, so we don't need to do anything