sql
This commit is contained in:
+2
-2
@@ -9,7 +9,7 @@ create table lc_app (
|
||||
id int(11) not null auto_increment,
|
||||
name char(30) not null default '' comment '名称',
|
||||
logo varchar(128) not null default '' comment 'logo',
|
||||
jsondata text not null default '' comment '更多数据',
|
||||
jsondata text comment '更多数据',
|
||||
c_time int(10) not null default '0' comment '创建时间',
|
||||
u_time timestamp not null default current_timestamp on update current_timestamp comment '更新时间',
|
||||
primary key (id)
|
||||
@@ -49,4 +49,4 @@ create table lc_app_wxpaylog (
|
||||
notify_param text comment '回调参数',
|
||||
u_time timestamp not null default current_timestamp comment '更新时间',
|
||||
primary key (id)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='支付回调日志'
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='支付回调日志';
|
||||
|
||||
+1
-1
@@ -17,7 +17,7 @@ create table lc_app_liche_users (
|
||||
c_time int(10) unsigned not null default '0' comment '创建时间',
|
||||
u_time timestamp not null default current_timestamp on update current_timestamp,
|
||||
primary key (id)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='狸车小程序用户表'
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='狸车小程序用户表';
|
||||
|
||||
|
||||
-- ----------------------------
|
||||
|
||||
+1
-1
@@ -20,5 +20,5 @@ create table lc_app_licheb_users (
|
||||
c_time int(10) unsigned not null default '0' comment '创建时间',
|
||||
u_time timestamp not null default current_timestamp on update current_timestamp,
|
||||
primary key (id)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='狸车宝用户表'
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='狸车宝用户表';
|
||||
|
||||
|
||||
+1
-1
@@ -11,7 +11,7 @@ create table lc_subjects(
|
||||
title varchar(32) not null default '' comment '标题',
|
||||
cover text comment '封面(多图用逗号隔开,包含图片信息)',
|
||||
imgs text comment '图片信息(多图用逗号隔开,包含图片信息)',
|
||||
content text not null comment '内容',
|
||||
content text comment '内容',
|
||||
cate_id int(10) unsigned not null default '0' comment '图片信息',
|
||||
biz_id int(10) unsigned not null default '0' comment '商家id',
|
||||
address varchar(255) not null default '' comment '定位地址',
|
||||
|
||||
Reference in New Issue
Block a user