/*
  Warnings:

  - The values [secretary,treasurer,chairperson,manager] on the enum `user_society_mapping_role` will be removed. If these variants are still used in the database, this will fail.
  - The values [secretary,treasurer,chairperson,manager] on the enum `user_society_mapping_role` will be removed. If these variants are still used in the database, this will fail.

*/
-- AlterTable
ALTER TABLE `transactions` ALTER COLUMN `transaction_date` DROP DEFAULT;

-- AlterTable
ALTER TABLE `user_society_mapping` MODIFY `role` ENUM('superadmin', 'admin', 'member') NOT NULL DEFAULT 'member';

-- AlterTable
ALTER TABLE `users` MODIFY `role` ENUM('superadmin', 'admin', 'member') NOT NULL DEFAULT 'member';
