v2.0_update_schema.sql 629 B

1234567891011
  1. -- #v1.0_update_schema
  2. alter table `test_finance`.t_credit_apply_userfile add column name varchar(255) NOT NULL DEFAULT '' COMMENT '文件名';
  3. alter table `test_finance`.t_credit_apply_userfile add column size bigint NOT NULL DEFAULT 0 COMMENT '文件大小';
  4. alter table `test_finance`.t_draw_apply_userfile add column name varchar(255) NOT NULL DEFAULT '' COMMENT '文件名';
  5. alter table `test_finance`.t_draw_apply_userfile add column size bigint NOT NULL DEFAULT 0 COMMENT '文件大小';
  6. -- #v1.1_update_schema
  7. alter table `test_finance`.t_file_type add column remark varchar(255) NOT NULL DEFAULT '' COMMENT '备注';