mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2024-11-05 12:42:53 +00:00
13 lines
279 B
SQL
13 lines
279 B
SQL
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 VARCHAR(1000),
|
|
INDEX(token),
|
|
INDEX(uri)
|
|
);
|
|
|