/*
  Warnings:

  - Added the required column `date_of_birth` to the `user_profile` table without a default value. This is not possible if the table is not empty.
  - Added the required column `gender` to the `user_profile` table without a default value. This is not possible if the table is not empty.

*/
-- CreateEnum
CREATE TYPE "Gender" AS ENUM ('MALE', 'FEMALE', 'OTHER');

-- AlterTable
ALTER TABLE "attachments" ALTER COLUMN "file_url" DROP NOT NULL;

-- AlterTable
ALTER TABLE "user_profile" ADD COLUMN     "date_of_birth" TIMESTAMP(3) NOT NULL,
ADD COLUMN     "gender" "Gender" NOT NULL;
