
* added verified badge to profile * added verified to schema * made verified optional * generated missing migration * add if exists Co-authored-by: Jamie <ijamespine@me.com>
11 lines
311 B
SQL
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;
|