Table Definition
CREATE TABLE `sk_schedules` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`key` int(11) unsigned NOT NULL,
`type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`status` int(11) unsigned DEFAULT '0',
`body` text COLLATE utf8mb4_unicode_ci,
`retry` int(11) unsigned NOT NULL,
`created_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=[Redacted by tbls] DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci
Name | Type | Default | Nullable | Extra Definition | Children | Parents | Comment |
---|---|---|---|---|---|---|---|
id | int(11) unsigned | false | auto_increment | ||||
key | int(11) unsigned | false | |||||
type | varchar(255) | false | |||||
status | int(11) unsigned | 0 | true | ||||
body | text | true | |||||
retry | int(11) unsigned | false | |||||
created_time | timestamp | CURRENT_TIMESTAMP | false |
Name | Type | Definition |
---|---|---|
PRIMARY | PRIMARY KEY | PRIMARY KEY (id) |
Name | Definition |
---|---|
PRIMARY | PRIMARY KEY (id) USING BTREE |
Generated by tbls