summaryrefslogtreecommitdiff
path: root/schist_core/schist_models/migrations
diff options
context:
space:
mode:
authorJoe Carstairs <me@joeac.net>2026-01-17 08:34:18 +0000
committerJoe Carstairs <me@joeac.net>2026-01-17 16:43:36 +0000
commit0971a7a4e847a5ae935c164d8d63c18d803ddc70 (patch)
treee177150729e6547c271e4d27dd31a5f2ca27d484 /schist_core/schist_models/migrations
parentfa1d9941e2d3969a1035d36c97f3363628a409c0 (diff)
BucketTransaction has date field
Diffstat (limited to 'schist_core/schist_models/migrations')
-rw-r--r--schist_core/schist_models/migrations/2024-08-31-084439_initial_setup/up.sql1
1 files changed, 1 insertions, 0 deletions
diff --git a/schist_core/schist_models/migrations/2024-08-31-084439_initial_setup/up.sql b/schist_core/schist_models/migrations/2024-08-31-084439_initial_setup/up.sql
index e645d43..da85b33 100644
--- a/schist_core/schist_models/migrations/2024-08-31-084439_initial_setup/up.sql
+++ b/schist_core/schist_models/migrations/2024-08-31-084439_initial_setup/up.sql
@@ -36,6 +36,7 @@ CREATE TABLE bucket_transactions(
id INTEGER NOT NULL PRIMARY KEY,
amount INTEGER NOT NULL,
bucket_id INTEGER NOT NULL,
+ date TEXT NOT NULL,
description TEXT NOT NULL,
FOREIGN KEY (bucket_id)
REFERENCES buckets (id)