add missing skeema file

This commit is contained in:
Dario 2020-10-20 14:25:41 +02:00 committed by Ulf Gebhardt
parent b34d547881
commit 7c139a2352
No known key found for this signature in database
GPG Key ID: 81308EFE29ABFEBD

View File

@ -0,0 +1,9 @@
CREATE TABLE `pending_tasks` (
`id` int UNSIGNED NOT NULL,
`user_id` int UNSIGNED DEFAULT '0',
`request` varbinary(2048) NOT NULL,
`created` datetime NOT NULL,
`finished` datetime DEFAULT '2000-01-01 000000',
`result_json` varchar(255) DEFAULT NULL,
`task_type_id` int UNSIGNED NOT NULL
) ENGINE = InnoDB DEFAULT CHARSET=utf8mb4;;