Add non-custom currencies per group

This commit is contained in:
Steven Sengchanh
2025-04-19 00:54:15 +02:00
parent a11efc79c1
commit af4bfe3780
26 changed files with 4648 additions and 62 deletions

View File

@@ -0,0 +1,2 @@
-- AlterTable
ALTER TABLE "Group" ADD COLUMN "currencyCode" TEXT;

View File

@@ -16,6 +16,7 @@ model Group {
name String
information String? @db.Text
currency String @default("$")
currencyCode String?
participants Participant[]
expenses Expense[]
activities Activity[]