/*
  Warnings:

  - You are about to drop the column `choice` on the `InstantGame` table. All the data in the column will be lost.
  - Added the required column `choices` to the `InstantGame` table without a default value. This is not possible if the table is not empty.

*/
-- AlterTable
ALTER TABLE `InstantGame` DROP COLUMN `choice`,
    ADD COLUMN `choices` JSON NOT NULL,
    ADD COLUMN `mode` ENUM('SINGLE', 'MULTIPLE') NOT NULL DEFAULT 'SINGLE';
