
* Moved prisma to packages * Add missing prisma configs * Extracts common libs and types * Build and pipeline fixes * Adds missing package * Prisma scripts cleanup * Updates lint staged * Type fixes * Sort imports * Updates yarn lock file * Fixes for yarn dx * Revert "Sort imports" This reverts commit 076109decab9b9ba307fc03696c3b0da5c4896f3. * Formatting * Prevent double TS version * Fix conflict * Extracted e2e configs
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;
|