calcom/apps/web/prisma/migrations/20220205135022_add_verified_column/migration.sql
2022-02-10 14:22:45 -07:00

11 lines
311 B
SQL

/*
Warnings:
- You are about to drop the column `smartContractAddress` on the `EventType` table. All the data in the column will be lost.
*/
-- AlterTable
ALTER TABLE "EventType" DROP COLUMN IF EXISTS "smartContractAddress";
-- AlterTable
ALTER TABLE "users" ADD COLUMN "verified" BOOLEAN DEFAULT false;