fix(prisma): add removal of custom theme migration
This commit is contained in:
parent
16d2014bfb
commit
870f6e88b1
1 changed files with 12 additions and 0 deletions
|
@ -0,0 +1,12 @@
|
||||||
|
/*
|
||||||
|
Warnings:
|
||||||
|
- You are about to drop the `Theme` table. If the table is not empty, all the data it contains will be lost.
|
||||||
|
*/
|
||||||
|
-- DropForeignKey
|
||||||
|
ALTER TABLE "Theme" DROP CONSTRAINT "Theme_userId_fkey";
|
||||||
|
|
||||||
|
-- AlterTable
|
||||||
|
ALTER TABLE "User" ALTER COLUMN "systemTheme" SET DEFAULT E'system';
|
||||||
|
|
||||||
|
-- DropTable
|
||||||
|
DROP TABLE "Theme";
|
Loading…
Add table
Reference in a new issue