summaryrefslogtreecommitdiff
path: root/backend/src/schema.rs
diff options
context:
space:
mode:
authorJoe Carstairs <me@joeac.net>2024-09-17 11:28:56 +0100
committerJoe Carstairs <me@joeac.net>2024-09-17 11:28:56 +0100
commitf0e3e0cfb183253e03b1a61ddecb7b9330d47fdb (patch)
tree722eca369743dcfbb95f1efd58cc4cecc0fb8677 /backend/src/schema.rs
parentc737b6df94eae4981bb03dda3583e24046e24865 (diff)
Refactors backend
Diffstat (limited to 'backend/src/schema.rs')
-rw-r--r--backend/src/schema.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/backend/src/schema.rs b/backend/src/schema.rs
index 942e913..372f8f3 100644
--- a/backend/src/schema.rs
+++ b/backend/src/schema.rs
@@ -23,8 +23,6 @@ diesel::table! {
categories (id) {
id -> Integer,
name -> Text,
- initial_budget -> Integer,
- initial_period -> Integer,
}
}
@@ -54,6 +52,7 @@ diesel::table! {
description -> Text,
payee -> Text,
quantity -> Integer,
+ date -> Text,
account_id -> Integer,
}
}