/*
  Warnings:

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

*/
-- AlterTable
ALTER TABLE "Event" DROP COLUMN "image_url",
ADD COLUMN     "file_name" TEXT NOT NULL;
