MySQL数据库表结构设计
第 1-12 条, 共 12 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
product_id | bigint(20) | 否 | 商品ID | 普通索引 | ||
product_attr_unique | varchar(50) | 否 | 商品属性 | 无索引 | ||
cart_num | smallint(5) | 0 | 否 | 商品数量 | 无索引 | 0 |
create_time | datetime | 否 | 添加时间 | 无索引 | ||
is_pay | tinyint(1) | 0 | 否 | 0 = 未购买 1 = 已购买 | 无索引 | 0 |
is_del | tinyint(1) | 0 | 否 | 是否删除 | 无索引 | 0 |
is_new | tinyint(1) | 0 | 否 | 是否为立即购买 | 无索引 | 0 |
combination_id | int(10) | 0 | 是 | 拼团id | 无索引 | 0 |
seckill_id | int(10) | 0 | 否 | 秒杀产品ID | 无索引 | 0 |
bargain_id | int(10) | 0 | 否 | 砍价id | 无索引 | 0 |
uid | bigint(20) | 否 | 用户ID | 普通索引 | ||
yesapi_yshopmall_yx_store_cart_type | varchar(32) | product | 否 | 类型 | 普通索引 | product |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:商城系统-购物车表:https://open.yesapi.cn/tablelist/yesapi_yshopmall_yx_store_cart.html
-- 数据库大全:商城系统-购物车表
-- 来源:YesApi.cn
CREATE TABLE `yesapi_yshopmall_yx_store_cart` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`product_id` bigint(20) NOT NULL COMMENT '商品ID',
`product_attr_unique` varchar(50) NOT NULL COMMENT '商品属性',
`cart_num` smallint(5) NOT NULL DEFAULT '0' COMMENT '商品数量',
`create_time` datetime NOT NULL COMMENT '添加时间',
`is_pay` tinyint(1) NOT NULL DEFAULT '0' COMMENT '0 = 未购买 1 = 已购买',
`is_del` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否删除',
`is_new` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否为立即购买',
`combination_id` int(10) NOT NULL DEFAULT '0' COMMENT '拼团id',
`seckill_id` int(10) NOT NULL DEFAULT '0' COMMENT '秒杀产品ID',
`bargain_id` int(10) NOT NULL DEFAULT '0' COMMENT '砍价id',
`uid` bigint(20) NOT NULL COMMENT '用户ID',
`yesapi_yshopmall_yx_store_cart_type` varchar(32) NOT NULL DEFAULT 'product' COMMENT '类型',
KEY `product_id` (`product_id`),
KEY `uid` (`uid`),
KEY `yesapi_yshopmall_yx_store_cart_type` (`yesapi_yshopmall_yx_store_cart_type`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '商城系统-购物车表';
复制后,到数据库执行,即可创建此数据库表。