Blame view

sources/3rdparty/sabre/dav/examples/sql/sqlite.locks.sql 184 Bytes
6d9380f96   Cédric Dupont   Update sources OC...
1
2
3
4
5
6
7
8
9
10
11
12
  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;