MySQL数据库表结构设计
第 1-6 条, 共 6 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
return_history_id | int(11) | 否 | 无索引 | |||
return_id | int(11) | 否 | 无索引 | |||
return_status_id | int(11) | 否 | 无索引 | |||
notify | tinyint(1) | 否 | 无索引 | |||
date_added | datetime | 否 | 无索引 | |||
yesapi_openant_return_history_comment | text | 是 | 无索引 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:openant电商-退货历史:https://open.yesapi.cn/tablelist/yesapi_openant_return_history.html
-- 数据库大全:openant电商-退货历史
-- 来源:YesApi.cn
CREATE TABLE `yesapi_openant_return_history` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`return_history_id` int(11) NULL COMMENT '',
`return_id` int(11) NULL COMMENT '',
`return_status_id` int(11) NULL COMMENT '',
`notify` tinyint(1) NULL COMMENT '',
`date_added` datetime NULL COMMENT '',
`yesapi_openant_return_history_comment` text NULL COMMENT '',
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'openant电商-退货历史';
复制后,到数据库执行,即可创建此数据库表。