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.
10 ALTER TABLE "Inventory" ADD COLUMN "rarity" "Rarity" NOT NULL;
13 ALTER TABLE "Item" DROP COLUMN "availableRarity",
14 ADD COLUMN "rarityDropRates" JSONB NOT NULL;