fixed locks in database.sql

This commit is contained in:
Philipp Holzer 2018-07-07 17:59:22 +02:00
parent 1ffe0cfd81
commit f61aa2a3ee
No known key found for this signature in database
GPG Key ID: 58160D7D6AF942B6
1 changed files with 3 additions and 1 deletions

View File

@ -576,8 +576,10 @@ CREATE TABLE IF NOT EXISTS `locks` (
`id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
`name` varchar(128) NOT NULL DEFAULT '' COMMENT '',
`locked` boolean NOT NULL DEFAULT '0' COMMENT '',
`expires` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'datetime of lock expiration',
`pid` int unsigned NOT NULL DEFAULT 0 COMMENT 'Process ID',
PRIMARY KEY(`id`)
PRIMARY KEY(`id`),
INDEX `name_expires` (`name`,`expires`)
) DEFAULT COLLATE utf8mb4_general_ci COMMENT='';
--