5 lines
198 B
MySQL
5 lines
198 B
MySQL
|
|
alter table crm_opportunity
|
||
|
|
add column if not exists project_location varchar(100),
|
||
|
|
add column if not exists operator_name varchar(100),
|
||
|
|
add column if not exists competitor_name varchar(200);
|