重庆新需求表字段修改

This commit is contained in:
liang.chao 2024-09-24 13:44:15 +08:00
parent 9605d963d3
commit 4b465b2bde
1 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,10 @@
-- 先删除字段
ALTER TABLE bm_agreement_info DROP COLUMN sign_time;
-- 再新增字段
alter table bm_agreement_info
add sign_time varchar(64) null comment '签订日期';
-- 费用指标
alter table bm_project_lot
add cost_indicators decimal(10, 2) null comment '费用指标';