mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2024-11-05 08:22:56 +00:00
14 lines
263 B
MySQL
14 lines
263 B
MySQL
|
CREATE TABLE locks (
|
||
|
id SERIAL NOT NULL,
|
||
|
owner VARCHAR(100),
|
||
|
timeout INTEGER,
|
||
|
created INTEGER,
|
||
|
token VARCHAR(100),
|
||
|
scope smallint,
|
||
|
depth smallint,
|
||
|
uri text
|
||
|
);
|
||
|
|
||
|
ALTER TABLE ONLY locks
|
||
|
ADD CONSTRAINT locks_pkey PRIMARY KEY (id);
|