MySQL数据库表结构设计
第 1-15 条, 共 15 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
cron_code | varchar(20) | 否 | 普通索引 | |||
cron_name | varchar(120) | 否 | 无索引 | |||
cron_desc | text | 是 | 无索引 | |||
cron_order | tinyint(3) | 0 | 否 | 无索引 | 0 | |
cron_config | text | 否 | 无索引 | |||
thistime | int(10) | 0 | 否 | 无索引 | 0 | |
nextime | int(10) | 否 | 普通索引 | |||
yesapi_ecs_crons_day | tinyint(2) | 否 | 无索引 | |||
yesapi_ecs_crons_week | varchar(1) | 否 | 无索引 | |||
yesapi_ecs_crons_hour | varchar(2) | 否 | 无索引 | |||
yesapi_ecs_crons_minute | varchar(255) | 否 | 无索引 | |||
yesapi_ecs_crons_enable | tinyint(1) | 1 | 否 | 普通索引 | 1 | |
run_once | tinyint(1) | 0 | 否 | 无索引 | 0 | |
allow_ip | varchar(100) | 否 | 无索引 | |||
alow_files | varchar(255) | 否 | 无索引 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:汽车故障诊断-:https://open.yesapi.cn/tablelist/yesapi_ecs_crons.html
-- 数据库大全:汽车故障诊断-
-- 来源:YesApi.cn
CREATE TABLE `yesapi_ecs_crons` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`cron_code` varchar(20) NOT NULL COMMENT '',
`cron_name` varchar(120) NOT NULL COMMENT '',
`cron_desc` text NOT NULL COMMENT '',
`cron_order` tinyint(3) NOT NULL DEFAULT '0' COMMENT '',
`cron_config` text NOT NULL COMMENT '',
`thistime` int(10) NOT NULL DEFAULT '0' COMMENT '',
`nextime` int(10) NOT NULL COMMENT '',
`yesapi_ecs_crons_day` tinyint(2) NOT NULL COMMENT '',
`yesapi_ecs_crons_week` varchar(1) NOT NULL COMMENT '',
`yesapi_ecs_crons_hour` varchar(2) NOT NULL COMMENT '',
`yesapi_ecs_crons_minute` varchar(255) NOT NULL COMMENT '',
`yesapi_ecs_crons_enable` tinyint(1) NOT NULL DEFAULT '1' COMMENT '',
`run_once` tinyint(1) NOT NULL DEFAULT '0' COMMENT '',
`allow_ip` varchar(100) NOT NULL COMMENT '',
`alow_files` varchar(255) NOT NULL COMMENT '',
KEY `cron_code` (`cron_code`),
KEY `nextime` (`nextime`),
KEY `yesapi_ecs_crons_enable` (`yesapi_ecs_crons_enable`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '汽车故障诊断-';
复制后,到数据库执行,即可创建此数据库表。