7 lines
530 B
SQL
7 lines
530 B
SQL
ALTER TABLE `ufutx_s2_customer`
|
|
ADD COLUMN `remark` text default null comment "备注" after `contacts_mobile`,
|
|
ADD COLUMN `status` tinyInt not null comment "合作状态 1=已合作,2=跟进中,3=暂停中" after `contacts_mobile`,
|
|
ADD COLUMN `intention` tinyInt not null comment "合作意向 1=低,2=中,3=高" after `contacts_mobile`,
|
|
ADD COLUMN `industry_remark` VARCHAR(50) default null comment "补充行业" after `contacts_mobile`,
|
|
ADD COLUMN `industry` VARCHAR(50) default null comment "行业" after `contacts_mobile`
|