MySQL数据库表结构设计
第 1-9 条, 共 9 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
yesapi_fly_score_detail_type | varchar(100) | 是 | 无索引 | |||
user_id | bigint(20) | 是 | 无索引 | |||
score | int(11) | 是 | 无索引 | |||
balance | int(11) | 是 | 无索引 | |||
remark | varchar(255) | 是 | 无索引 | |||
foreign_id | bigint(20) | 是 | 无索引 | |||
score_rule_id | bigint(20) | 是 | 无索引 | |||
create_time | datetime | 是 | 无索引 | |||
yesapi_fly_score_detail_status | tinyint(2) | 1 | 是 | 审核状态 | 无索引 | 1 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:知识问答社区-分数明细:https://open.yesapi.cn/tablelist/yesapi_fly_score_detail.html
-- 数据库大全:知识问答社区-分数明细
-- 来源:YesApi.cn
CREATE TABLE `yesapi_fly_score_detail` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`yesapi_fly_score_detail_type` varchar(100) NULL COMMENT '',
`user_id` bigint(20) NULL COMMENT '',
`score` int(11) NULL COMMENT '',
`balance` int(11) NULL COMMENT '',
`remark` varchar(255) NULL COMMENT '',
`foreign_id` bigint(20) NULL COMMENT '',
`score_rule_id` bigint(20) NULL COMMENT '',
`create_time` datetime NULL COMMENT '',
`yesapi_fly_score_detail_status` tinyint(2) NULL DEFAULT '1' COMMENT '审核状态',
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '知识问答社区-分数明细';
复制后,到数据库执行,即可创建此数据库表。