mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2024-11-05 04:42:59 +00:00
10 lines
235 B
SQL
10 lines
235 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 text
|
|
);
|