10 lines
270 B
SQL
10 lines
270 B
SQL
/*
|
|
Warnings:
|
|
|
|
- You are about to drop the column `revealPictures` on the `Hunt` table. All the data in the column will be lost.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE "public"."Hunt" DROP COLUMN "revealPictures",
|
|
ADD COLUMN "revealQuests" BOOLEAN NOT NULL DEFAULT false;
|