15 lines
589 B
SQL
15 lines
589 B
SQL
/*
|
|
Warnings:
|
|
|
|
- You are about to drop the column `finished` on the `Event` table. All the data in the column will be lost.
|
|
- Made the column `description` on table `Event` required. This step will fail if there are existing NULL values in that column.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE "Event" DROP COLUMN "finished",
|
|
ALTER COLUMN "description" SET NOT NULL,
|
|
ALTER COLUMN "maxParticipants" DROP NOT NULL,
|
|
ALTER COLUMN "finishedBadges" SET DEFAULT ARRAY[]::TEXT[],
|
|
ALTER COLUMN "requiredBadges" SET DEFAULT ARRAY[]::TEXT[],
|
|
ALTER COLUMN "finishedPermissions" SET DEFAULT ARRAY[]::TEXT[];
|