9 lines
178 B
SQL
9 lines
178 B
SQL
-- DropIndex
|
|
DROP INDEX IF EXISTS "treatments_organizationId_status_idx";
|
|
|
|
-- AlterTable
|
|
ALTER TABLE "treatments" DROP COLUMN "status";
|
|
|
|
-- DropEnum
|
|
DROP TYPE "TreatmentStatus";
|