| 12345678910111213141516 |
- -- 项目ddl SQL语句统一放在这里记录,包括表结构、关联关系、索引、函数、存储过程等
- -- 每段sql语句必须要按规范注释,注释规范如下:
- -- date: 2018-12-11
- -- author: suntg
- -- content: 内容备注xxx
- -- date: 2018-12-12 17:51
- -- author: hejq
- -- content: 供应商关系表增加字段,需要对账金额,次更新时间,
- -- 采用字符串是因为需要分币别统计处理
- alter table `purc$vendors`
- add column todo_apchek_count VARCHAR(100) default '' comment '需要对账金额',
- add column update_time datetime comment '上一次更新时间';
|