1 Star 0 Fork 3

LeaGan私有框架/红名片

forked from 远澈潇湘/红名片 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
hmp.sql 4.68 KB
一键复制 编辑 原始数据 按行查看 历史
远澈潇湘 提交于 2018-05-25 13:40 . 12
#红名片小程序数据库表
#用户表
create table if not exists hmp_users(
id int unsigned not null auto_increment,
wx_openid varchar(100) not null comment '微信openID',
unionid varchar(100) not null comment '微信unionid',
username varchar(30) not null comment '用户名',
address varchar(100) not null comment '地址',
company_name varchar(100) not null comment '公司名称',
position varchar(30) not null comment '职位',
email varchar(30) not null comment 'email',
phone varchar(20) not null comment '电话',
company_desc varchar(1000) comment '公司简介',
keywords varchar(30) not null comment '关键词',
pv int not null default 0 comment '人气',
click int not null default 0 comment '点赞',
collect int not null default 0 comment '收藏',
role_id tinyint(2) not null default 1 comment '角色默认为普通用户',
invite_code varchar(10) not null comment '邀请码',
portrait varchar(100) not null comment '头像',
commission int not null default 0 comment '佣金',
register_time datetime comment '注册时间',
status tinyint(2) not null default 1,
primary key (id)
) engine=MyISAM default charset=utf8 comment '用户表';
#会员需求表
create table if not exists hmp_request(
id int unsigned not null auto_increment,
vip_id int not null comment 'vipid',
user_id int not null comment '用户id',
title varchar(30) not null comment '标题',
content varchar(500) not null comment '内容',
create_time timestamp default current_timestamp,
primary key (id)
)engine=MyISAM default charset=utf8 comment '会员需求表';
#浏览表
create table if not exists hmp_pv(
id int unsigned not null auto_increment,
user_id int not null comment '用户id',
pv_user_id int not null comment '被浏览用户id',
create_time timestamp default current_timestamp,
primary key (id)
)engine=MyISAM default charset=utf8 comment '浏览表';
#留言表
create table if not exists hmp_messages(
id int not null auto_increment,
user_id int not null comment '用户id',
be_user_id int not null comment '被留言用户id',
content varchar(300) not null comment '留言内容',
create_time timestamp default current_timestamp,
status tinyint(2) not null default 1,
primary key (id)
)engine=MyISAM default charset=utf8 comment '留言表';
#团队表
create table if not exists hmp_team(
id int unsigned not null auto_increment,
user_id int not null comment '创建人id',
team_name varchar(50) not null comment '团队名称',
team_desc varchar(1000) not null comment '团队介绍',
total int not null default 1 comment '总人数',
create_time datetime comment '创建时间',
status tinyint(2) not null default 1,
primary key (id)
)engine=MyISAM default charset=utf8 comment '团队表';
#团队分布表
create table if not exists hmp_team_spread(
id int not null auto_increment,
user_id int not null comment '用户id',
team_id int not null comment '团队id',
create_time timestamp default current_timestamp,
status tinyint(2) not null default 1,
primary key (id)
)engine=MyISAM default charset=utf8 comment '团队分布表';
#订单表
create table if not exists hmp_orders(
id int not null auto_increment,
order_number varchar(30) not null comment '订单号',
user_id int not null comment '用户id',
total_fee int not null default 0 comment '总价',
create_time datetime comment '订单生成时间',
pay_time datetime comment '支付时间',
pay_way varchar(30) not null comment '支付方式',
status tinyint(2) not null default 1,
primary key (id)
)engine=MyISAM default charset=utf8 comment '订单表';
#收藏表
create table if not exists hmp_collect(
id int not null auto_increment,
user_id int not null comment '用户id',
collected_user_id int not null comment '被收藏用户id',
create_time timestamp default current_timestamp,
primary key (id)
)engine=MyISAM default charset=utf8 comment '收藏表';
#点赞表
create table if not exists hmp_click(
id int not null auto_increment,
user_id int not null comment '用户id',
clicked_user_id int not null comment '被点赞用户id',
create_time timestamp default current_timestamp,
primary key (id)
)engine=MyISAM default charset=utf8 comment '点赞表';
#会员表
create table if not exists hmp_vip(
id int not null auto_increment,
user_id int not null comment '用户id',
status tinyint(2) not null default 1,
primary key (id)
)engine=MyISAM default charset=utf8 comment '会员表';
#系统设置表
create table if not exists hmp_sys_options(
id int not null auto_increment,
option_key varchar(100) not null comment '键',
option_value varchar(100) not null comment '值',
description varchar(100) not null comment '描述',
primary key (id)
)engine=MyISAM default charset=utf8 comment '系统配置表';
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/lgkuangjia/hmp.git
git@gitee.com:lgkuangjia/hmp.git
lgkuangjia
hmp
红名片
master

搜索帮助