5 lines
148 B
MySQL
5 lines
148 B
MySQL
|
|
alter table if exists crm_opportunity
|
||
|
|
add column if not exists updated_by bigint;
|
||
|
|
|
||
|
|
comment on column crm_opportunity.updated_by is '更新人ID';
|