+ 立即免费创建此表 返回数据库大全

MySQL建表SQL语句

数据库结构:接口管理平台-日记:https://open.yesapi.cn/tablelist/yesapi_crapapi_log.html


-- 数据库大全:接口管理平台-日记
-- 来源:YesApi.cn
CREATE TABLE `yesapi_crapapi_log` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `yesapi_crapapi_log_status` tinyint(4) NOT NULL DEFAULT '1' COMMENT '',
    `createTime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '',
    `sequence` bigint(11) NOT NULL DEFAULT '0' COMMENT '排序,越大越靠前',
    `modelClass` varchar(50) NOT NULL COMMENT '',
    `modelName` varchar(50) NOT NULL COMMENT '',
    `yesapi_crapapi_log_type` varchar(20) NOT NULL COMMENT '',
    `updateBy` varchar(50) NOT NULL COMMENT '操作人',
    `remark` varchar(100) NOT NULL COMMENT '',
    `content` longtext NOT NULL COMMENT '',
    `identy` varchar(50) NOT NULL COMMENT '数据唯一主键',
    PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '接口管理平台-日记';

复制后,到数据库执行,即可创建此数据库表。


MySQL数据库表结构设计

第 1-10 条, 共 10 条.
字段名称字段类型字段默认值是否允许为空字段描述索引字段数据示例
yesapi_crapapi_log_statustinyint(4)1无索引1
createTimetimestampCURRENT_TIMESTAMP无索引CURRENT_TIMESTAMP
sequencebigint(11)0排序,越大越靠前无索引0
modelClassvarchar(50)无索引
modelNamevarchar(50)无索引
yesapi_crapapi_log_typevarchar(20)无索引
updateByvarchar(50)操作人无索引
remarkvarchar(100)无索引
contentlongtext无索引
identyvarchar(50)数据唯一主键无索引

猜你喜欢

MySQL数据库设计 接口管理平台-文章

MySQL数据库设计 接口管理平台-缺陷

MySQL数据库设计 接口管理平台-评论

MySQL数据库设计 接口管理平台-调试

MySQL数据库设计 接口管理平台-错误

MySQL数据库设计 接口管理平台-热门搜索

MySQL数据库设计 接口管理平台-接口

MySQL数据库设计 接口管理平台-菜单

MySQL数据库设计 接口管理平台-模块

MySQL数据库设计 接口管理平台-项目

MySQL数据库设计 接口管理平台-项目元数据

MySQL数据库设计 接口管理平台-项目成员

MySQL数据库设计 接口管理平台-配置

MySQL数据库设计 接口管理平台-来源

MySQL数据库设计 接口管理平台-用户



回到顶部 ↑