21 lines
784 B
SQL
21 lines
784 B
SQL
-- ----------------------------
|
|
-- 业绩案例表更新脚本
|
|
-- 说明:此脚本用于更新业绩案例表结构
|
|
-- ----------------------------
|
|
|
|
-- ----------------------------
|
|
-- 添加新字段(如果需要)
|
|
-- ----------------------------
|
|
-- alter table biz_performance_case add column new_column varchar(100) default null comment '新字段';
|
|
|
|
-- ----------------------------
|
|
-- 修改字段(如果需要)
|
|
-- ----------------------------
|
|
-- alter table biz_performance_case modify column case_name varchar(300) comment '案例名称';
|
|
|
|
-- ----------------------------
|
|
-- 添加索引(如果需要)
|
|
-- ----------------------------
|
|
-- create index idx_case_code on biz_performance_case(case_code);
|
|
-- create index idx_case_type on biz_performance_case(case_type);
|