From ad632f9e0658f1947cc54eddc84d883ac6b1cc66 Mon Sep 17 00:00:00 2001 From: Thomas <4159106+dtslvr@users.noreply.github.com> Date: Tue, 9 May 2023 14:42:43 +0200 Subject: [PATCH] Add migration --- .../20230509124205_added_fee_to_order_type/migration.sql | 2 ++ prisma/schema.prisma | 1 + 2 files changed, 3 insertions(+) create mode 100644 prisma/migrations/20230509124205_added_fee_to_order_type/migration.sql diff --git a/prisma/migrations/20230509124205_added_fee_to_order_type/migration.sql b/prisma/migrations/20230509124205_added_fee_to_order_type/migration.sql new file mode 100644 index 000000000..ab1c75455 --- /dev/null +++ b/prisma/migrations/20230509124205_added_fee_to_order_type/migration.sql @@ -0,0 +1,2 @@ +-- AlterEnum +ALTER TYPE "Type" ADD VALUE 'FEE'; diff --git a/prisma/schema.prisma b/prisma/schema.prisma index 81646012a..290ffed73 100644 --- a/prisma/schema.prisma +++ b/prisma/schema.prisma @@ -249,6 +249,7 @@ enum Role { enum Type { BUY DIVIDEND + FEE ITEM LIABILITY SELL