mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-02-16 10:42:08 +00:00
10 lines
272 B
SQL
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;
|