feat(transaction-recurring): #100 implement editing of recurring transactions based on treasure chests
All checks were successful
Build Docker Image / Build-Docker-Image (push) Successful in 4m56s
Build and Push Docker Image / Build-And-Push-Docker-Image (push) Successful in 5m2s

This commit was merged in pull request #121.
This commit is contained in:
2025-05-20 23:18:16 +02:00
parent b7d216a982
commit 2ba5ddd9f2
18 changed files with 948 additions and 59 deletions

View File

@@ -0,0 +1,21 @@
CREATE TABLE "transaction_recurring" (
id TEXT NOT NULL UNIQUE PRIMARY KEY,
user_id TEXT NOT NULL,
interval_months INTEGER NOT NULL,
last_execution DATETIME,
active INTEGER NOT NULL,
party TEXT,
description TEXT,
account_id TEXT,
treasure_chest_id TEXT,
value INTEGER NOT NULL,
created_at DATETIME NOT NULL,
created_by TEXT NOT NULL,
updated_at DATETIME,
updated_by TEXT
) WITHOUT ROWID;