admin sys city update that add fee carno

This commit is contained in:
xxb
2021-08-05 15:59:44 +08:00
parent bcaf7f079a
commit 56ca815fa2
3 changed files with 71 additions and 1 deletions
+1
View File
@@ -95,6 +95,7 @@ create table lc_sys_city(
status tinyint(1) not null default 1 comment '状态 -1删除 0:禁用 1:启用',
primary key(id)
)ENGINE=InnoDB default CHARSET=utf8mb4 COMMENT='开通城市表';
alter table lc_sys_city add column fee_carno decimal(12,2) not null default 0.00 comment '挂牌价' after firstchar;
drop table if exists lc_sys_config;