feat(transaction-recurring): #100 replace active with next-execution
All checks were successful
Build Docker Image / Build-Docker-Image (push) Successful in 4m59s
Build and Push Docker Image / Build-And-Push-Docker-Image (push) Successful in 4m29s

This commit was merged in pull request #133.
This commit is contained in:
2025-05-28 20:46:22 +02:00
parent e67ac99c7f
commit be7209a4c6
5 changed files with 37 additions and 21 deletions

View File

@@ -11,8 +11,7 @@ type TransactionRecurring struct {
UserId uuid.UUID `db:"user_id"`
IntervalMonths int64 `db:"interval_months"`
LastExecution *time.Time `db:"last_execution"`
Active bool `db:"active"`
NextExecution *time.Time `db:"next_execution"`
Party string `db:"party"`
Description string `db:"description"`
@@ -30,7 +29,7 @@ type TransactionRecurring struct {
type TransactionRecurringInput struct {
Id string
IntervalMonths string
Active string
NextExecution string
Party string
Description string
AccountId string