Files
the-biergarten-app/src/prisma/migrations/20230510010306_/migration.sql
Aaron William Po 2eb2626d54 Updates to user schema, account page
Renamed isAccountVerified to accountIsVerified, add account info to account page
2023-05-11 22:20:51 -04:00

10 lines
272 B
SQL

/*
Warnings:
- You are about to drop the column `isAccountVerified` on the `User` table. All the data in the column will be lost.
*/
-- AlterTable
ALTER TABLE "User" DROP COLUMN "isAccountVerified",
ADD COLUMN "accountIsVerified" BOOLEAN NOT NULL DEFAULT false;