Files
FHC-Core/include/sabredav/examples/sql/sqlite.locks.sql
T
SimonGschnell a21a292da6 dokument upload
2024-01-29 16:48:41 +01:00

13 lines
184 B
SQL
Executable File

BEGIN TRANSACTION;
CREATE TABLE locks (
id integer primary key asc,
owner text,
timeout integer,
created integer,
token text,
scope integer,
depth integer,
uri text
);
COMMIT;