-- Pehla column add karne ke liye
ALTER TABLE `members` 
ADD `mobile_auth_service` ENUM('YES', 'NO') NOT NULL DEFAULT 'YES' AFTER `status`;

-- Dusra column add karne ke liye
ALTER TABLE `members` 
ADD `mobile_auth_fee` DECIMAL(10,2) NOT NULL DEFAULT '10.00' AFTER `mobile_auth_service`;