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