summaryrefslogtreecommitdiff
path: root/backend/app/src/schema.rs
diff options
context:
space:
mode:
authorJoe Carstairs <me@joeac.net>2024-10-16 18:22:55 +0100
committerJoe Carstairs <me@joeac.net>2024-10-17 06:55:02 +0100
commit7adaace61a4fe983eba5ded3aaaf624ce6fb9014 (patch)
tree6e0697f9dbb6e249c60af5a92479a86316c55221 /backend/app/src/schema.rs
parent27b95c9186bd45edd4c982a7cc89cf69cf2c5d46 (diff)
Refactors some backend stuff to core lib
Diffstat (limited to 'backend/app/src/schema.rs')
-rw-r--r--backend/app/src/schema.rs72
1 files changed, 0 insertions, 72 deletions
diff --git a/backend/app/src/schema.rs b/backend/app/src/schema.rs
deleted file mode 100644
index 372f8f3..0000000
--- a/backend/app/src/schema.rs
+++ /dev/null
@@ -1,72 +0,0 @@
-// @generated automatically by Diesel CLI.
-
-diesel::table! {
- accounts (id) {
- id -> Integer,
- name -> Text,
- opening_balance -> Integer,
- opening_date -> Text,
- }
-}
-
-diesel::table! {
- budget_updates (id) {
- id -> Integer,
- category_id -> Integer,
- date -> Text,
- new_budget -> Integer,
- new_period -> Integer,
- }
-}
-
-diesel::table! {
- categories (id) {
- id -> Integer,
- name -> Text,
- }
-}
-
-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_updates -> 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!(
- accounts,
- budget_updates,
- categories,
- category_transfers,
- transaction_categorisations,
- transactions,
-);