-- AlterTable
ALTER TABLE `expenses` MODIFY `payment_mode` ENUM('upi', 'cash', 'bank_transfer', 'cheque', 'neft_imps', 'other') NOT NULL DEFAULT 'upi';

-- AlterTable
ALTER TABLE `maintenance_payments` MODIFY `payment_mode` ENUM('upi', 'cash', 'bank_transfer', 'cheque', 'neft_imps', 'other') NOT NULL DEFAULT 'upi';

-- AlterTable
ALTER TABLE `transactions` MODIFY `payment_mode` ENUM('upi', 'cash', 'bank_transfer', 'cheque', 'neft_imps', 'other') NULL,
    ALTER COLUMN `transaction_date` DROP DEFAULT;
