MySQL数据库表结构设计
第 1-8 条, 共 8 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
title | varchar(64) | 否 | 优惠券名称 | 无索引 | ||
integral | int(11) | 0 | 否 | 兑换消耗积分值 | 无索引 | 0 |
coupon_price | decimal(8,2) unsigned | 0.00 | 否 | 兑换的优惠券面值 | 无索引 | 0.00 |
use_min_price | decimal(8,2) unsigned | 0.00 | 否 | 最低消费多少金额可用优惠券 | 无索引 | 0.00 |
coupon_time | int(11) | 0 | 否 | 优惠券有效期限(单位:天) | 普通索引 | 0 |
sort | int(11) | 1 | 否 | 排序 | 无索引 | 1 |
status | tinyint(1) | 0 | 否 | 状态(0:关闭,1:开启) | 普通索引 | 0 |
is_del | tinyint(1) | 0 | 否 | 是否删除 | 普通索引 | 0 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:小程序商城-优惠券表:https://open.yesapi.cn/tablelist/yesapi_eb_store_coupon.html
-- 数据库大全:小程序商城-优惠券表
-- 来源:YesApi.cn
CREATE TABLE `yesapi_eb_store_coupon` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(64) NOT NULL COMMENT '优惠券名称',
`integral` int(11) NOT NULL DEFAULT '0' COMMENT '兑换消耗积分值',
`coupon_price` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '兑换的优惠券面值',
`use_min_price` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '最低消费多少金额可用优惠券',
`coupon_time` int(11) NOT NULL DEFAULT '0' COMMENT '优惠券有效期限(单位:天)',
`sort` int(11) NOT NULL DEFAULT '1' COMMENT '排序',
`status` tinyint(1) NOT NULL DEFAULT '0' COMMENT '状态(0:关闭,1:开启)',
`is_del` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否删除',
KEY `coupon_time` (`coupon_time`),
KEY `status` (`status`),
KEY `is_del` (`is_del`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '小程序商城-优惠券表';
复制后,到数据库执行,即可创建此数据库表。
猜你喜欢
MySQL数据库设计 小程序商城-小程序access_token表