proc-gen equipment drops from monsters can be picked up
[sketchy-heroes.git] / prisma / migrations / 20220317054315_add_more_types / migration.sql
1 -- AlterEnum
2 -- This migration adds more than one value to an enum.
3 -- With PostgreSQL versions 11 and earlier, this is not possible
4 -- in a single migration. This can be worked around by creating
5 -- multiple migrations, each migration adding only one value to
6 -- the enum.
7
8
9 ALTER TYPE "InventoryType" ADD VALUE 'WEAPON';
10 ALTER TYPE "InventoryType" ADD VALUE 'SHIELD';
11 ALTER TYPE "InventoryType" ADD VALUE 'ARMOUR';