proc-gen equipment drops from monsters can be picked up
[sketchy-heroes.git] / prisma / migrations / 20220317154129_rework_items / migration.sql
1 /*
2   Warnings:
3
4   - You are about to drop the column `availableRarity` on the `Item` table. All the data in the column will be lost.
5   - Added the required column `rarity` to the `Inventory` table without a default value. This is not possible if the table is not empty.
6   - Added the required column `rarityDropRates` to the `Item` table without a default value. This is not possible if the table is not empty.
7
8 */
9 -- AlterTable
10 ALTER TABLE "Inventory" ADD COLUMN     "rarity" "Rarity" NOT NULL;
11
12 -- AlterTable
13 ALTER TABLE "Item" DROP COLUMN "availableRarity",
14 ADD COLUMN     "rarityDropRates" JSONB NOT NULL;