mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2024-11-05 06:02:58 +00:00
11 lines
235 B
MySQL
11 lines
235 B
MySQL
|
CREATE TABLE locks (
|
||
|
id INTEGER UNSIGNED NOT NULL PRIMARY KEY AUTO_INCREMENT,
|
||
|
owner VARCHAR(100),
|
||
|
timeout INTEGER UNSIGNED,
|
||
|
created INTEGER,
|
||
|
token VARCHAR(100),
|
||
|
scope TINYINT,
|
||
|
depth TINYINT,
|
||
|
uri text
|
||
|
);
|