* feature(auth): replace clerk.com with custom auth * minor fixes * remove notification preferences * decrease live events interval fix(api): cookies.. # Conflicts: # .gitignore # apps/api/src/index.ts # apps/dashboard/src/app/providers.tsx # packages/trpc/src/trpc.ts
10 lines
277 B
SQL
10 lines
277 B
SQL
/*
|
|
Warnings:
|
|
|
|
- Added the required column `provider` to the `accounts` table without a default value. This is not possible if the table is not empty.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE "accounts" ADD COLUMN "provider" TEXT NOT NULL,
|
|
ALTER COLUMN "providerId" DROP NOT NULL;
|