Browse Source

Add dividend to order type

pull/556/head
Thomas 4 years ago
parent
commit
73c77a49a4
  1. 2
      prisma/migrations/20211215205808_added_dividend_to_order_type/migration.sql
  2. 1
      prisma/schema.prisma

2
prisma/migrations/20211215205808_added_dividend_to_order_type/migration.sql

@ -0,0 +1,2 @@
-- AlterEnum
ALTER TYPE "Type" ADD VALUE 'DIVIDEND';

1
prisma/schema.prisma

@ -209,5 +209,6 @@ enum Role {
enum Type {
BUY
DIVIDEND
SELL
}

Loading…
Cancel
Save