mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-02 12:49:27 +00:00
13 lines
184 B
SQL
Executable File
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;
|