liche update for admin goods add auto_fine
This commit is contained in:
@@ -77,3 +77,21 @@ create table lc_auto_cars (
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='车型库';
|
||||
alter table lc_auto_cars add column month_pay double(10,2) not null default 0.0 comment '月供' after first_pay;
|
||||
alter table lc_auto_cars add column price_book double(10,2) not null default 0.0 comment '定金' after price_car;
|
||||
|
||||
|
||||
-- ----------------------------
|
||||
-- Title:车辆精品
|
||||
-- Author:xusir
|
||||
-- Table:lc_auto_fine
|
||||
-- ---------------------------
|
||||
drop table if exists lc_auto_fine;
|
||||
create table lc_auto_fine (
|
||||
id int(10) not null auto_increment comment '自增id',
|
||||
title varchar(50) not null default '' comment '标题',
|
||||
status tinyint(1) not null default '0' comment '状态(1开启 0关闭 -1删除)',
|
||||
u_time timestamp not null default current_timestamp on update current_timestamp comment '更新时间',
|
||||
c_time int(10) not null default '0' comment '创建时间',
|
||||
primary key (id)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='车辆精品';
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user