Skip to content

Latest commit

 

History

History
53 lines (39 loc) · 1.44 KB

sk_schedules.md

File metadata and controls

53 lines (39 loc) · 1.44 KB

sk_schedules

Description

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

Columns

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

Constraints

Name Type Definition
PRIMARY PRIMARY KEY PRIMARY KEY (id)

Indexes

Name Definition
PRIMARY PRIMARY KEY (id) USING BTREE

Relations

er


Generated by tbls