代码拉取完成,页面将自动刷新
同步操作将从 远澈潇湘/红名片 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
#红名片小程序数据库表
#用户表
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 '系统配置表';
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。