mirror of
https://github.com/pocket-id/pocket-id.git
synced 2026-09-12 05:59:03 +02:00
Co-authored-by: Elias Schneider <login@eliasschneider.com>
10 lines
269 B
SQL
10 lines
269 B
SQL
-- The "storage" table contains file data stored in the database
|
|
CREATE TABLE storage
|
|
(
|
|
path TEXT NOT NULL PRIMARY KEY,
|
|
data BYTEA NOT NULL,
|
|
size BIGINT NOT NULL,
|
|
mod_time TIMESTAMPTZ NOT NULL,
|
|
created_at TIMESTAMPTZ NOT NULL
|
|
);
|