MySQL数据库表结构设计
第 1-11 条, 共 11 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
cname | varchar(50) | 是 | 无索引 | |||
cid | int(11) | 是 | 优惠券ID | 普通索引 | ||
ctype | tinyint(1) | 是 | 优惠券类型 0-通用 1-商品券 | 无索引 | ||
start_time | datetime | 是 | 优惠券领取开启时间 | 普通索引 | ||
end_time | datetime | 是 | 优惠券领取结束时间 | 无索引 | ||
total_count | int(11) | 是 | 优惠券领取数量 | 无索引 | ||
remain_count | int(11) | 是 | 优惠券剩余领取数量 | 普通索引 | ||
is_permanent | tinyint(1) | 0 | 否 | 是否无限张数 | 无索引 | 0 |
yesapi_yshopmall_yx_store_coupon_issue_status | tinyint(1) | 1 | 否 | 1 正常 0 未开启 -1 已无效 | 普通索引 | 1 |
is_del | tinyint(3) | 0 | 否 | 普通索引 | 0 | |
create_time | datetime | 是 | 优惠券添加时间 | 无索引 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:商城系统-优惠券前台领取表:https://open.yesapi.cn/tablelist/yesapi_yshopmall_yx_store_coupon_issue.html
-- 数据库大全:商城系统-优惠券前台领取表
-- 来源:YesApi.cn
CREATE TABLE `yesapi_yshopmall_yx_store_coupon_issue` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`cname` varchar(50) NULL COMMENT '',
`cid` int(11) NULL COMMENT '优惠券ID',
`ctype` tinyint(1) NULL COMMENT '优惠券类型 0-通用 1-商品券',
`start_time` datetime NULL COMMENT '优惠券领取开启时间',
`end_time` datetime NULL COMMENT '优惠券领取结束时间',
`total_count` int(11) NULL COMMENT '优惠券领取数量',
`remain_count` int(11) NULL COMMENT '优惠券剩余领取数量',
`is_permanent` tinyint(1) NULL DEFAULT '0' COMMENT '是否无限张数',
`yesapi_yshopmall_yx_store_coupon_issue_status` tinyint(1) NULL DEFAULT '1' COMMENT '1 正常 0 未开启 -1 已无效',
`is_del` tinyint(3) NULL DEFAULT '0' COMMENT '',
`create_time` datetime NULL COMMENT '优惠券添加时间',
KEY `cid` (`cid`),
KEY `start_time` (`start_time`),
KEY `remain_count` (`remain_count`),
KEY `yesapi_yshopmall_yx_store_coupon_issue_status` (`yesapi_yshopmall_yx_store_coupon_issue_status`),
KEY `is_del` (`is_del`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '商城系统-优惠券前台领取表';
复制后,到数据库执行,即可创建此数据库表。