1
0
Fork 0
mirror of https://git.friendi.ca/friendica/friendica-addons.git synced 2025-07-08 01:18:48 +00:00
friendica-addons/dav/SabreDAV/examples/sql/pgsql.locks.sql
2012-06-03 18:19:28 +00:00

13 lines
263 B
SQL

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);