liche update for admin company manger
This commit is contained in:
+2
-1
@@ -40,7 +40,8 @@ create table lc_biz_brand (
|
||||
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='品牌表';
|
||||
alter table lc_biz_brand add column type tinyint(1) not null default 0 comment '类型:1-直营店,2-二网,3-合作店' after brand_logo;
|
||||
alter table lc_biz_brand add column type tinyint(1) not null default 0 comment '类型:1-直营店,2-二网,3-合作店' after brand_logo;
|
||||
alter table lc_biz_brand add column company_id int not null default 0 comment '公司ID' after type;
|
||||
|
||||
-- ----------------------------
|
||||
-- Title:商家标签关系
|
||||
|
||||
+17
@@ -187,3 +187,20 @@ create table lc_sys_tag_category (
|
||||
status tinyint(1) not null default '1' comment '状态:-1删除,0禁用,1正常',
|
||||
primary key (id)
|
||||
) ENGINE=INNODB DEFAULT CHARSET=UTF8MB4 COLLATE=UTF8MB4_0900_AI_CI COMMENT='系统标签分类表';
|
||||
|
||||
|
||||
-- ----------------------------
|
||||
-- Title:公司管理
|
||||
-- Author:xusir
|
||||
-- Table:lc_sys_company
|
||||
-- ---------------------------
|
||||
drop table if exists lc_sys_company;
|
||||
create table lc_sys_company (
|
||||
id int(10) unsigned not null auto_increment comment '自增id',
|
||||
title varchar(64) not null comment '公司名称',
|
||||
short varchar(32) not null default '' comment '公司简称',
|
||||
status tinyint(1) not null default '1' comment '状态:-1删除,0关闭,1开启',
|
||||
primary key (id)
|
||||
) ENGINE=INNODB DEFAULT CHARSET=UTF8MB4 COLLATE=UTF8MB4_0900_AI_CI COMMENT='公司管理';
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user