12345678910111213 |
- /*
- Warnings:
- - Added the required column `progress_status` to the `hospitals` table without a default value. This is not possible if the table is not empty.
- */
- -- CreateEnum
- CREATE TYPE "ProgressStatus" AS ENUM ('cari_data', 'dihubungi', 'negosiasi', 'follow_up', 'mou', 'onboarded', 'tidak_berminat');
- -- AlterTable
- ALTER TABLE "hospitals" DROP COLUMN "progress_status",
- ADD COLUMN "progress_status" "ProgressStatus" NOT NULL;
|