migration.sql 439 B

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