-- SQL script to add quotation_type to quotations table
ALTER TABLE `quotations` ADD COLUMN `quotation_type` ENUM('GST', 'NON GST') DEFAULT 'GST' AFTER customer_id;
