mirror of
https://github.com/pocket-id/pocket-id.git
synced 2025-12-12 16:23:03 +03:00
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
|
|
);
|