36573-vm/db/migrations/013_add_nature_of_business.sql
2025-12-11 09:11:16 +00:00

7 lines
488 B
SQL

ALTER TABLE `customer_applications` MODIFY `company_name` TEXT;
ALTER TABLE `customer_applications` MODIFY `company_website` TEXT;
ALTER TABLE `customer_applications` MODIFY `sales_owner` TEXT;
ALTER TABLE `customer_applications` MODIFY `major_product` TEXT;
ALTER TABLE `customer_applications` MODIFY `credit_rank` TEXT;
ALTER TABLE `customer_applications` MODIFY `del_to_customer_name` TEXT;
ALTER TABLE `customer_applications` ADD COLUMN `nature_of_business` VARCHAR(255) DEFAULT NULL;