summaryrefslogtreecommitdiff
path: root/schist_models/src/schema.rs
diff options
context:
space:
mode:
authorJoe Carstairs <me@joeac.net>2024-12-12 08:28:04 +0000
committerJoe Carstairs <me@joeac.net>2024-12-12 08:28:04 +0000
commit54894f9de9bad4fecb2a116d59a03cdd003f84c0 (patch)
tree6ce5517cecf23d4e93d7a381a374e1fa6c810cee /schist_models/src/schema.rs
parent8a30bcbdf9264d235bf93da3df8e170cfde53d02 (diff)
Moves rust workspace to root
Diffstat (limited to 'schist_models/src/schema.rs')
-rw-r--r--schist_models/src/schema.rs88
1 files changed, 88 insertions, 0 deletions
diff --git a/schist_models/src/schema.rs b/schist_models/src/schema.rs
new file mode 100644
index 0000000..1dd1391
--- /dev/null
+++ b/schist_models/src/schema.rs
@@ -0,0 +1,88 @@
+// @generated automatically by Diesel CLI.
+
+diesel::table! {
+ account_transfers (id) {
+ id -> Integer,
+ date -> Text,
+ description -> Text,
+ quantity -> Integer,
+ from_account_id -> Integer,
+ to_account_id -> Integer,
+ }
+}
+
+diesel::table! {
+ accounts (id) {
+ id -> Integer,
+ name -> Text,
+ opening_balance -> Integer,
+ opening_date -> Text,
+ }
+}
+
+diesel::table! {
+ budget_drips (id) {
+ id -> Integer,
+ category_id -> Integer,
+ date -> Text,
+ quantity -> Integer,
+ }
+}
+
+diesel::table! {
+ categories (id) {
+ id -> Integer,
+ name -> Text,
+ balance -> Integer,
+ balance_date -> Text,
+ budget_period -> Integer,
+ budget_period_unit -> Text,
+ budget_quantity -> Integer,
+ }
+}
+
+diesel::table! {
+ category_transfers (id) {
+ id -> Integer,
+ description -> Text,
+ quantity -> Integer,
+ from_category_id -> Integer,
+ to_category_id -> Integer,
+ }
+}
+
+diesel::table! {
+ transaction_categorisations (id) {
+ id -> Integer,
+ description -> Text,
+ quantity -> Integer,
+ transaction_id -> Integer,
+ category_id -> Integer,
+ }
+}
+
+diesel::table! {
+ transactions (id) {
+ id -> Integer,
+ description -> Text,
+ payee -> Text,
+ quantity -> Integer,
+ date -> Text,
+ account_id -> Integer,
+ }
+}
+
+diesel::joinable!(budget_drips -> categories (category_id));
+diesel::joinable!(transaction_categorisations -> categories (category_id));
+diesel::joinable!(transaction_categorisations -> transactions (transaction_id));
+diesel::joinable!(transactions -> accounts (account_id));
+
+diesel::allow_tables_to_appear_in_same_query!(
+ account_transfers,
+ accounts,
+ budget_drips,
+ categories,
+ category_transfers,
+ transaction_categorisations,
+ transactions,
+);