Update schema

This commit is contained in:
Neeraj Gupta
2025-07-16 10:56:12 +05:30
parent 47f0722687
commit 99f4d4ca4d

View File

@@ -10,7 +10,10 @@ CREATE TABLE IF NOT EXISTS public_file_tokens
device_limit int not null DEFAULT 0,
is_disabled bool not null DEFAULT FALSE,
enable_download bool not null DEFAULT TRUE,
password_info JSONB,
pw_hash TEXT,
pw_nonce TEXT,
mem_limit BIGINT,
ops_limit BIGINT,
created_at bigint NOT NULL DEFAULT now_utc_micro_seconds(),
updated_at bigint NOT NULL DEFAULT now_utc_micro_seconds()
);