From 2c8eaed990cd72a7e4058be81f9bc0523462c1cb Mon Sep 17 00:00:00 2001 From: Thomas <4159106+dtslvr@users.noreply.github.com> Date: Sat, 10 Sep 2022 15:52:33 +0200 Subject: [PATCH] Add migration --- .../migration.sql | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 prisma/migrations/20220910135140_removed_currency_and_view_mode_from_user/migration.sql diff --git a/prisma/migrations/20220910135140_removed_currency_and_view_mode_from_user/migration.sql b/prisma/migrations/20220910135140_removed_currency_and_view_mode_from_user/migration.sql new file mode 100644 index 000000000..60da96357 --- /dev/null +++ b/prisma/migrations/20220910135140_removed_currency_and_view_mode_from_user/migration.sql @@ -0,0 +1,3 @@ +-- AlterTable +ALTER TABLE "Settings" DROP COLUMN "currency", +DROP COLUMN "viewMode";