summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoe Carstairs <me@joeac.net>2024-10-16 12:51:21 +0100
committerJoe Carstairs <me@joeac.net>2024-10-16 12:51:21 +0100
commit27b95c9186bd45edd4c982a7cc89cf69cf2c5d46 (patch)
treebf104ff9d64e601bfec5516eb51ef298f3095e9b
parent76974785294089965efc3f55b2a08d4089029c52 (diff)
All backend stuff lives in backend folder
-rw-r--r--backend/app/2024-08-31-084439_initial_setup/down.sql (renamed from backend/migrations/2024-08-31-084439_initial_setup/down.sql)0
-rw-r--r--backend/app/2024-08-31-084439_initial_setup/up.sql (renamed from backend/migrations/2024-08-31-084439_initial_setup/up.sql)0
-rw-r--r--backend/app/Cargo.lock (renamed from backend/Cargo.lock)0
-rw-r--r--backend/app/Cargo.toml (renamed from backend/Cargo.toml)0
-rw-r--r--backend/app/Rocket.toml (renamed from backend/Rocket.toml)0
-rw-r--r--backend/app/diesel.toml (renamed from backend/diesel.toml)0
-rw-r--r--backend/app/src/databases.rs (renamed from backend/src/databases.rs)0
-rw-r--r--backend/app/src/main.rs (renamed from backend/src/main.rs)0
-rw-r--r--backend/app/src/models/account.rs (renamed from backend/src/models/account.rs)0
-rw-r--r--backend/app/src/models/budget.rs (renamed from backend/src/models/budget.rs)0
-rw-r--r--backend/app/src/models/budget_update.rs (renamed from backend/src/models/budget_update.rs)0
-rw-r--r--backend/app/src/models/category.rs (renamed from backend/src/models/category.rs)0
-rw-r--r--backend/app/src/models/category_balance.rs (renamed from backend/src/models/category_balance.rs)0
-rw-r--r--backend/app/src/models/category_budget.rs (renamed from backend/src/models/category_budget.rs)0
-rw-r--r--backend/app/src/models/category_transfer.rs (renamed from backend/src/models/category_transfer.rs)0
-rw-r--r--backend/app/src/models/date_time_utc.rs (renamed from backend/src/models/date_time_utc.rs)0
-rw-r--r--backend/app/src/models/mod.rs (renamed from backend/src/models/mod.rs)0
-rw-r--r--backend/app/src/models/transaction.rs (renamed from backend/src/models/transaction.rs)0
-rw-r--r--backend/app/src/models/transaction_categorisation.rs (renamed from backend/src/models/transaction_categorisation.rs)0
-rw-r--r--backend/app/src/queries/accounts/get_all.rs (renamed from backend/src/queries/accounts/get_all.rs)0
-rw-r--r--backend/app/src/queries/accounts/insert.rs (renamed from backend/src/queries/accounts/insert.rs)0
-rw-r--r--backend/app/src/queries/accounts/mod.rs (renamed from backend/src/queries/accounts/mod.rs)0
-rw-r--r--backend/app/src/queries/budget_updates/get_all.rs (renamed from backend/src/queries/budget_updates/get_all.rs)0
-rw-r--r--backend/app/src/queries/budget_updates/get_first_with_date.rs (renamed from backend/src/queries/budget_updates/get_first_with_date.rs)0
-rw-r--r--backend/app/src/queries/budget_updates/get_most_recent_with_category_id.rs (renamed from backend/src/queries/budget_updates/get_most_recent_with_category_id.rs)0
-rw-r--r--backend/app/src/queries/budget_updates/mod.rs (renamed from backend/src/queries/budget_updates/mod.rs)0
-rw-r--r--backend/app/src/queries/categories/get_all.rs (renamed from backend/src/queries/categories/get_all.rs)0
-rw-r--r--backend/app/src/queries/categories/get_all_ids.rs (renamed from backend/src/queries/categories/get_all_ids.rs)0
-rw-r--r--backend/app/src/queries/categories/mod.rs (renamed from backend/src/queries/categories/mod.rs)0
-rw-r--r--backend/app/src/queries/category_balances/get_all.rs (renamed from backend/src/queries/category_balances/get_all.rs)0
-rw-r--r--backend/app/src/queries/category_balances/mod.rs (renamed from backend/src/queries/category_balances/mod.rs)0
-rw-r--r--backend/app/src/queries/category_budgets/get_most_recent_per_category_id.rs (renamed from backend/src/queries/category_budgets/get_most_recent_per_category_id.rs)0
-rw-r--r--backend/app/src/queries/category_budgets/mod.rs (renamed from backend/src/queries/category_budgets/mod.rs)0
-rw-r--r--backend/app/src/queries/category_transfers/mod.rs (renamed from backend/src/queries/category_transfers/mod.rs)0
-rw-r--r--backend/app/src/queries/category_transfers/sum_quantity_per_from_category_id.rs (renamed from backend/src/queries/category_transfers/sum_quantity_per_from_category_id.rs)0
-rw-r--r--backend/app/src/queries/category_transfers/sum_quantity_per_to_category_id.rs (renamed from backend/src/queries/category_transfers/sum_quantity_per_to_category_id.rs)0
-rw-r--r--backend/app/src/queries/mod.rs (renamed from backend/src/queries/mod.rs)0
-rw-r--r--backend/app/src/queries/transaction_categorisations/mod.rs (renamed from backend/src/queries/transaction_categorisations/mod.rs)0
-rw-r--r--backend/app/src/queries/transaction_categorisations/sum_quantity_per_category_id.rs (renamed from backend/src/queries/transaction_categorisations/sum_quantity_per_category_id.rs)0
-rw-r--r--backend/app/src/queries/transaction_categorisations/sum_quantity_per_to_category_id.rs (renamed from backend/src/queries/transaction_categorisations/sum_quantity_per_to_category_id.rs)0
-rw-r--r--backend/app/src/routes/account.rs (renamed from backend/src/routes/account.rs)0
-rw-r--r--backend/app/src/routes/balance.rs (renamed from backend/src/routes/balance.rs)0
-rw-r--r--backend/app/src/routes/budget.rs (renamed from backend/src/routes/budget.rs)0
-rw-r--r--backend/app/src/routes/budget_update.rs (renamed from backend/src/routes/budget_update.rs)0
-rw-r--r--backend/app/src/routes/category.rs (renamed from backend/src/routes/category.rs)0
-rw-r--r--backend/app/src/routes/mod.rs (renamed from backend/src/routes/mod.rs)0
-rw-r--r--backend/app/src/schema.rs (renamed from backend/src/schema.rs)0
-rw-r--r--backend/app/src/utils/calculate_budgets_accrual.rs (renamed from backend/src/utils/calculate_budgets_accrual.rs)0
-rw-r--r--backend/app/src/utils/calculate_category_balance.rs (renamed from backend/src/utils/calculate_category_balance.rs)0
-rw-r--r--backend/app/src/utils/find_by_id_or.rs (renamed from backend/src/utils/find_by_id_or.rs)0
-rw-r--r--backend/app/src/utils/mod.rs (renamed from backend/src/utils/mod.rs)0
-rw-r--r--backend/importers/actualbudget/Cargo.lock (renamed from importers/actualbudget/Cargo.lock)0
-rw-r--r--backend/importers/actualbudget/Cargo.toml (renamed from importers/actualbudget/Cargo.toml)0
-rw-r--r--backend/importers/actualbudget/src/getters.rs (renamed from importers/actualbudget/src/getters.rs)0
-rw-r--r--backend/importers/actualbudget/src/inserters.rs (renamed from importers/actualbudget/src/inserters.rs)0
-rw-r--r--backend/importers/actualbudget/src/main.rs (renamed from importers/actualbudget/src/main.rs)0
-rw-r--r--backend/importers/actualbudget/src/models/actualbudget/account.rs (renamed from importers/actualbudget/src/models/actualbudget/account.rs)0
-rw-r--r--backend/importers/actualbudget/src/models/actualbudget/category.rs (renamed from importers/actualbudget/src/models/actualbudget/category.rs)0
-rw-r--r--backend/importers/actualbudget/src/models/actualbudget/date.rs (renamed from importers/actualbudget/src/models/actualbudget/date.rs)0
-rw-r--r--backend/importers/actualbudget/src/models/actualbudget/mod.rs (renamed from importers/actualbudget/src/models/actualbudget/mod.rs)0
-rw-r--r--backend/importers/actualbudget/src/models/actualbudget/transaction.rs (renamed from importers/actualbudget/src/models/actualbudget/transaction.rs)0
-rw-r--r--backend/importers/actualbudget/src/models/actualbudget/zero_budget.rs (renamed from importers/actualbudget/src/models/actualbudget/zero_budget.rs)0
-rw-r--r--backend/importers/actualbudget/src/models/budgeting_app/DateTimeUtc.rs (renamed from importers/actualbudget/src/models/budgeting_app/DateTimeUtc.rs)0
-rw-r--r--backend/importers/actualbudget/src/models/budgeting_app/account.rs (renamed from importers/actualbudget/src/models/budgeting_app/account.rs)0
-rw-r--r--backend/importers/actualbudget/src/models/budgeting_app/budget_update.rs (renamed from importers/actualbudget/src/models/budgeting_app/budget_update.rs)0
-rw-r--r--backend/importers/actualbudget/src/models/budgeting_app/category.rs (renamed from importers/actualbudget/src/models/budgeting_app/category.rs)0
-rw-r--r--backend/importers/actualbudget/src/models/budgeting_app/category_transfer.rs (renamed from importers/actualbudget/src/models/budgeting_app/category_transfer.rs)0
-rw-r--r--backend/importers/actualbudget/src/models/budgeting_app/date_time_utc.rs (renamed from importers/actualbudget/src/models/budgeting_app/date_time_utc.rs)0
-rw-r--r--backend/importers/actualbudget/src/models/budgeting_app/mod.rs (renamed from importers/actualbudget/src/models/budgeting_app/mod.rs)0
-rw-r--r--backend/importers/actualbudget/src/models/budgeting_app/transaction.rs (renamed from importers/actualbudget/src/models/budgeting_app/transaction.rs)0
-rw-r--r--backend/importers/actualbudget/src/models/budgeting_app/transaction_categorisation.rs (renamed from importers/actualbudget/src/models/budgeting_app/transaction_categorisation.rs)0
-rw-r--r--backend/importers/actualbudget/src/models/mod.rs (renamed from importers/actualbudget/src/models/mod.rs)0
-rw-r--r--backend/importers/actualbudget/src/transformers.rs (renamed from importers/actualbudget/src/transformers.rs)0
-rw-r--r--backend/migrations/.keep0
74 files changed, 0 insertions, 0 deletions
diff --git a/backend/migrations/2024-08-31-084439_initial_setup/down.sql b/backend/app/2024-08-31-084439_initial_setup/down.sql
index 8cf4b1e..8cf4b1e 100644
--- a/backend/migrations/2024-08-31-084439_initial_setup/down.sql
+++ b/backend/app/2024-08-31-084439_initial_setup/down.sql
diff --git a/backend/migrations/2024-08-31-084439_initial_setup/up.sql b/backend/app/2024-08-31-084439_initial_setup/up.sql
index 3584ae7..3584ae7 100644
--- a/backend/migrations/2024-08-31-084439_initial_setup/up.sql
+++ b/backend/app/2024-08-31-084439_initial_setup/up.sql
diff --git a/backend/Cargo.lock b/backend/app/Cargo.lock
index f453ebe..f453ebe 100644
--- a/backend/Cargo.lock
+++ b/backend/app/Cargo.lock
diff --git a/backend/Cargo.toml b/backend/app/Cargo.toml
index af1c8ef..af1c8ef 100644
--- a/backend/Cargo.toml
+++ b/backend/app/Cargo.toml
diff --git a/backend/Rocket.toml b/backend/app/Rocket.toml
index bb43355..bb43355 100644
--- a/backend/Rocket.toml
+++ b/backend/app/Rocket.toml
diff --git a/backend/diesel.toml b/backend/app/diesel.toml
index a0d61bf..a0d61bf 100644
--- a/backend/diesel.toml
+++ b/backend/app/diesel.toml
diff --git a/backend/src/databases.rs b/backend/app/src/databases.rs
index 7202e78..7202e78 100644
--- a/backend/src/databases.rs
+++ b/backend/app/src/databases.rs
diff --git a/backend/src/main.rs b/backend/app/src/main.rs
index c3e02e5..c3e02e5 100644
--- a/backend/src/main.rs
+++ b/backend/app/src/main.rs
diff --git a/backend/src/models/account.rs b/backend/app/src/models/account.rs
index c10bd5f..c10bd5f 100644
--- a/backend/src/models/account.rs
+++ b/backend/app/src/models/account.rs
diff --git a/backend/src/models/budget.rs b/backend/app/src/models/budget.rs
index cc18f2e..cc18f2e 100644
--- a/backend/src/models/budget.rs
+++ b/backend/app/src/models/budget.rs
diff --git a/backend/src/models/budget_update.rs b/backend/app/src/models/budget_update.rs
index c63e957..c63e957 100644
--- a/backend/src/models/budget_update.rs
+++ b/backend/app/src/models/budget_update.rs
diff --git a/backend/src/models/category.rs b/backend/app/src/models/category.rs
index 5cb2609..5cb2609 100644
--- a/backend/src/models/category.rs
+++ b/backend/app/src/models/category.rs
diff --git a/backend/src/models/category_balance.rs b/backend/app/src/models/category_balance.rs
index 796b40b..796b40b 100644
--- a/backend/src/models/category_balance.rs
+++ b/backend/app/src/models/category_balance.rs
diff --git a/backend/src/models/category_budget.rs b/backend/app/src/models/category_budget.rs
index 9796261..9796261 100644
--- a/backend/src/models/category_budget.rs
+++ b/backend/app/src/models/category_budget.rs
diff --git a/backend/src/models/category_transfer.rs b/backend/app/src/models/category_transfer.rs
index 6cbda0e..6cbda0e 100644
--- a/backend/src/models/category_transfer.rs
+++ b/backend/app/src/models/category_transfer.rs
diff --git a/backend/src/models/date_time_utc.rs b/backend/app/src/models/date_time_utc.rs
index 03d5802..03d5802 100644
--- a/backend/src/models/date_time_utc.rs
+++ b/backend/app/src/models/date_time_utc.rs
diff --git a/backend/src/models/mod.rs b/backend/app/src/models/mod.rs
index b790fcb..b790fcb 100644
--- a/backend/src/models/mod.rs
+++ b/backend/app/src/models/mod.rs
diff --git a/backend/src/models/transaction.rs b/backend/app/src/models/transaction.rs
index 36f33f8..36f33f8 100644
--- a/backend/src/models/transaction.rs
+++ b/backend/app/src/models/transaction.rs
diff --git a/backend/src/models/transaction_categorisation.rs b/backend/app/src/models/transaction_categorisation.rs
index d2867f1..d2867f1 100644
--- a/backend/src/models/transaction_categorisation.rs
+++ b/backend/app/src/models/transaction_categorisation.rs
diff --git a/backend/src/queries/accounts/get_all.rs b/backend/app/src/queries/accounts/get_all.rs
index 12941ac..12941ac 100644
--- a/backend/src/queries/accounts/get_all.rs
+++ b/backend/app/src/queries/accounts/get_all.rs
diff --git a/backend/src/queries/accounts/insert.rs b/backend/app/src/queries/accounts/insert.rs
index c20cf60..c20cf60 100644
--- a/backend/src/queries/accounts/insert.rs
+++ b/backend/app/src/queries/accounts/insert.rs
diff --git a/backend/src/queries/accounts/mod.rs b/backend/app/src/queries/accounts/mod.rs
index 94fa360..94fa360 100644
--- a/backend/src/queries/accounts/mod.rs
+++ b/backend/app/src/queries/accounts/mod.rs
diff --git a/backend/src/queries/budget_updates/get_all.rs b/backend/app/src/queries/budget_updates/get_all.rs
index 97f2f2f..97f2f2f 100644
--- a/backend/src/queries/budget_updates/get_all.rs
+++ b/backend/app/src/queries/budget_updates/get_all.rs
diff --git a/backend/src/queries/budget_updates/get_first_with_date.rs b/backend/app/src/queries/budget_updates/get_first_with_date.rs
index a2824be..a2824be 100644
--- a/backend/src/queries/budget_updates/get_first_with_date.rs
+++ b/backend/app/src/queries/budget_updates/get_first_with_date.rs
diff --git a/backend/src/queries/budget_updates/get_most_recent_with_category_id.rs b/backend/app/src/queries/budget_updates/get_most_recent_with_category_id.rs
index 4753092..4753092 100644
--- a/backend/src/queries/budget_updates/get_most_recent_with_category_id.rs
+++ b/backend/app/src/queries/budget_updates/get_most_recent_with_category_id.rs
diff --git a/backend/src/queries/budget_updates/mod.rs b/backend/app/src/queries/budget_updates/mod.rs
index 3b514dd..3b514dd 100644
--- a/backend/src/queries/budget_updates/mod.rs
+++ b/backend/app/src/queries/budget_updates/mod.rs
diff --git a/backend/src/queries/categories/get_all.rs b/backend/app/src/queries/categories/get_all.rs
index db5a073..db5a073 100644
--- a/backend/src/queries/categories/get_all.rs
+++ b/backend/app/src/queries/categories/get_all.rs
diff --git a/backend/src/queries/categories/get_all_ids.rs b/backend/app/src/queries/categories/get_all_ids.rs
index 7c7c912..7c7c912 100644
--- a/backend/src/queries/categories/get_all_ids.rs
+++ b/backend/app/src/queries/categories/get_all_ids.rs
diff --git a/backend/src/queries/categories/mod.rs b/backend/app/src/queries/categories/mod.rs
index 80356b3..80356b3 100644
--- a/backend/src/queries/categories/mod.rs
+++ b/backend/app/src/queries/categories/mod.rs
diff --git a/backend/src/queries/category_balances/get_all.rs b/backend/app/src/queries/category_balances/get_all.rs
index 713fbeb..713fbeb 100644
--- a/backend/src/queries/category_balances/get_all.rs
+++ b/backend/app/src/queries/category_balances/get_all.rs
diff --git a/backend/src/queries/category_balances/mod.rs b/backend/app/src/queries/category_balances/mod.rs
index 3fc1be2..3fc1be2 100644
--- a/backend/src/queries/category_balances/mod.rs
+++ b/backend/app/src/queries/category_balances/mod.rs
diff --git a/backend/src/queries/category_budgets/get_most_recent_per_category_id.rs b/backend/app/src/queries/category_budgets/get_most_recent_per_category_id.rs
index 6b76efd..6b76efd 100644
--- a/backend/src/queries/category_budgets/get_most_recent_per_category_id.rs
+++ b/backend/app/src/queries/category_budgets/get_most_recent_per_category_id.rs
diff --git a/backend/src/queries/category_budgets/mod.rs b/backend/app/src/queries/category_budgets/mod.rs
index 29fc246..29fc246 100644
--- a/backend/src/queries/category_budgets/mod.rs
+++ b/backend/app/src/queries/category_budgets/mod.rs
diff --git a/backend/src/queries/category_transfers/mod.rs b/backend/app/src/queries/category_transfers/mod.rs
index 85eb1c8..85eb1c8 100644
--- a/backend/src/queries/category_transfers/mod.rs
+++ b/backend/app/src/queries/category_transfers/mod.rs
diff --git a/backend/src/queries/category_transfers/sum_quantity_per_from_category_id.rs b/backend/app/src/queries/category_transfers/sum_quantity_per_from_category_id.rs
index ae3a51a..ae3a51a 100644
--- a/backend/src/queries/category_transfers/sum_quantity_per_from_category_id.rs
+++ b/backend/app/src/queries/category_transfers/sum_quantity_per_from_category_id.rs
diff --git a/backend/src/queries/category_transfers/sum_quantity_per_to_category_id.rs b/backend/app/src/queries/category_transfers/sum_quantity_per_to_category_id.rs
index fe6f3a7..fe6f3a7 100644
--- a/backend/src/queries/category_transfers/sum_quantity_per_to_category_id.rs
+++ b/backend/app/src/queries/category_transfers/sum_quantity_per_to_category_id.rs
diff --git a/backend/src/queries/mod.rs b/backend/app/src/queries/mod.rs
index 43328e2..43328e2 100644
--- a/backend/src/queries/mod.rs
+++ b/backend/app/src/queries/mod.rs
diff --git a/backend/src/queries/transaction_categorisations/mod.rs b/backend/app/src/queries/transaction_categorisations/mod.rs
index d4217cc..d4217cc 100644
--- a/backend/src/queries/transaction_categorisations/mod.rs
+++ b/backend/app/src/queries/transaction_categorisations/mod.rs
diff --git a/backend/src/queries/transaction_categorisations/sum_quantity_per_category_id.rs b/backend/app/src/queries/transaction_categorisations/sum_quantity_per_category_id.rs
index 7f93e0c..7f93e0c 100644
--- a/backend/src/queries/transaction_categorisations/sum_quantity_per_category_id.rs
+++ b/backend/app/src/queries/transaction_categorisations/sum_quantity_per_category_id.rs
diff --git a/backend/src/queries/transaction_categorisations/sum_quantity_per_to_category_id.rs b/backend/app/src/queries/transaction_categorisations/sum_quantity_per_to_category_id.rs
index e69de29..e69de29 100644
--- a/backend/src/queries/transaction_categorisations/sum_quantity_per_to_category_id.rs
+++ b/backend/app/src/queries/transaction_categorisations/sum_quantity_per_to_category_id.rs
diff --git a/backend/src/routes/account.rs b/backend/app/src/routes/account.rs
index 7bbdb4f..7bbdb4f 100644
--- a/backend/src/routes/account.rs
+++ b/backend/app/src/routes/account.rs
diff --git a/backend/src/routes/balance.rs b/backend/app/src/routes/balance.rs
index f423c90..f423c90 100644
--- a/backend/src/routes/balance.rs
+++ b/backend/app/src/routes/balance.rs
diff --git a/backend/src/routes/budget.rs b/backend/app/src/routes/budget.rs
index 67aae8e..67aae8e 100644
--- a/backend/src/routes/budget.rs
+++ b/backend/app/src/routes/budget.rs
diff --git a/backend/src/routes/budget_update.rs b/backend/app/src/routes/budget_update.rs
index 7732c7b..7732c7b 100644
--- a/backend/src/routes/budget_update.rs
+++ b/backend/app/src/routes/budget_update.rs
diff --git a/backend/src/routes/category.rs b/backend/app/src/routes/category.rs
index 01fd8d1..01fd8d1 100644
--- a/backend/src/routes/category.rs
+++ b/backend/app/src/routes/category.rs
diff --git a/backend/src/routes/mod.rs b/backend/app/src/routes/mod.rs
index bf0ab4a..bf0ab4a 100644
--- a/backend/src/routes/mod.rs
+++ b/backend/app/src/routes/mod.rs
diff --git a/backend/src/schema.rs b/backend/app/src/schema.rs
index 372f8f3..372f8f3 100644
--- a/backend/src/schema.rs
+++ b/backend/app/src/schema.rs
diff --git a/backend/src/utils/calculate_budgets_accrual.rs b/backend/app/src/utils/calculate_budgets_accrual.rs
index f14260d..f14260d 100644
--- a/backend/src/utils/calculate_budgets_accrual.rs
+++ b/backend/app/src/utils/calculate_budgets_accrual.rs
diff --git a/backend/src/utils/calculate_category_balance.rs b/backend/app/src/utils/calculate_category_balance.rs
index 3c1c62f..3c1c62f 100644
--- a/backend/src/utils/calculate_category_balance.rs
+++ b/backend/app/src/utils/calculate_category_balance.rs
diff --git a/backend/src/utils/find_by_id_or.rs b/backend/app/src/utils/find_by_id_or.rs
index f5add30..f5add30 100644
--- a/backend/src/utils/find_by_id_or.rs
+++ b/backend/app/src/utils/find_by_id_or.rs
diff --git a/backend/src/utils/mod.rs b/backend/app/src/utils/mod.rs
index 84a27af..84a27af 100644
--- a/backend/src/utils/mod.rs
+++ b/backend/app/src/utils/mod.rs
diff --git a/importers/actualbudget/Cargo.lock b/backend/importers/actualbudget/Cargo.lock
index 63a53b9..63a53b9 100644
--- a/importers/actualbudget/Cargo.lock
+++ b/backend/importers/actualbudget/Cargo.lock
diff --git a/importers/actualbudget/Cargo.toml b/backend/importers/actualbudget/Cargo.toml
index 7cc3e1b..7cc3e1b 100644
--- a/importers/actualbudget/Cargo.toml
+++ b/backend/importers/actualbudget/Cargo.toml
diff --git a/importers/actualbudget/src/getters.rs b/backend/importers/actualbudget/src/getters.rs
index 88a660d..88a660d 100644
--- a/importers/actualbudget/src/getters.rs
+++ b/backend/importers/actualbudget/src/getters.rs
diff --git a/importers/actualbudget/src/inserters.rs b/backend/importers/actualbudget/src/inserters.rs
index 179de97..179de97 100644
--- a/importers/actualbudget/src/inserters.rs
+++ b/backend/importers/actualbudget/src/inserters.rs
diff --git a/importers/actualbudget/src/main.rs b/backend/importers/actualbudget/src/main.rs
index 495216e..495216e 100644
--- a/importers/actualbudget/src/main.rs
+++ b/backend/importers/actualbudget/src/main.rs
diff --git a/importers/actualbudget/src/models/actualbudget/account.rs b/backend/importers/actualbudget/src/models/actualbudget/account.rs
index 727c082..727c082 100644
--- a/importers/actualbudget/src/models/actualbudget/account.rs
+++ b/backend/importers/actualbudget/src/models/actualbudget/account.rs
diff --git a/importers/actualbudget/src/models/actualbudget/category.rs b/backend/importers/actualbudget/src/models/actualbudget/category.rs
index 21fdf80..21fdf80 100644
--- a/importers/actualbudget/src/models/actualbudget/category.rs
+++ b/backend/importers/actualbudget/src/models/actualbudget/category.rs
diff --git a/importers/actualbudget/src/models/actualbudget/date.rs b/backend/importers/actualbudget/src/models/actualbudget/date.rs
index bd37c46..bd37c46 100644
--- a/importers/actualbudget/src/models/actualbudget/date.rs
+++ b/backend/importers/actualbudget/src/models/actualbudget/date.rs
diff --git a/importers/actualbudget/src/models/actualbudget/mod.rs b/backend/importers/actualbudget/src/models/actualbudget/mod.rs
index 5ca472f..5ca472f 100644
--- a/importers/actualbudget/src/models/actualbudget/mod.rs
+++ b/backend/importers/actualbudget/src/models/actualbudget/mod.rs
diff --git a/importers/actualbudget/src/models/actualbudget/transaction.rs b/backend/importers/actualbudget/src/models/actualbudget/transaction.rs
index 0a21cfe..0a21cfe 100644
--- a/importers/actualbudget/src/models/actualbudget/transaction.rs
+++ b/backend/importers/actualbudget/src/models/actualbudget/transaction.rs
diff --git a/importers/actualbudget/src/models/actualbudget/zero_budget.rs b/backend/importers/actualbudget/src/models/actualbudget/zero_budget.rs
index 87c88e7..87c88e7 100644
--- a/importers/actualbudget/src/models/actualbudget/zero_budget.rs
+++ b/backend/importers/actualbudget/src/models/actualbudget/zero_budget.rs
diff --git a/importers/actualbudget/src/models/budgeting_app/DateTimeUtc.rs b/backend/importers/actualbudget/src/models/budgeting_app/DateTimeUtc.rs
index e44fa8c..e44fa8c 100644
--- a/importers/actualbudget/src/models/budgeting_app/DateTimeUtc.rs
+++ b/backend/importers/actualbudget/src/models/budgeting_app/DateTimeUtc.rs
diff --git a/importers/actualbudget/src/models/budgeting_app/account.rs b/backend/importers/actualbudget/src/models/budgeting_app/account.rs
index 165b55c..165b55c 100644
--- a/importers/actualbudget/src/models/budgeting_app/account.rs
+++ b/backend/importers/actualbudget/src/models/budgeting_app/account.rs
diff --git a/importers/actualbudget/src/models/budgeting_app/budget_update.rs b/backend/importers/actualbudget/src/models/budgeting_app/budget_update.rs
index 9958446..9958446 100644
--- a/importers/actualbudget/src/models/budgeting_app/budget_update.rs
+++ b/backend/importers/actualbudget/src/models/budgeting_app/budget_update.rs
diff --git a/importers/actualbudget/src/models/budgeting_app/category.rs b/backend/importers/actualbudget/src/models/budgeting_app/category.rs
index 3f51dfd..3f51dfd 100644
--- a/importers/actualbudget/src/models/budgeting_app/category.rs
+++ b/backend/importers/actualbudget/src/models/budgeting_app/category.rs
diff --git a/importers/actualbudget/src/models/budgeting_app/category_transfer.rs b/backend/importers/actualbudget/src/models/budgeting_app/category_transfer.rs
index 0097429..0097429 100644
--- a/importers/actualbudget/src/models/budgeting_app/category_transfer.rs
+++ b/backend/importers/actualbudget/src/models/budgeting_app/category_transfer.rs
diff --git a/importers/actualbudget/src/models/budgeting_app/date_time_utc.rs b/backend/importers/actualbudget/src/models/budgeting_app/date_time_utc.rs
index 69cdfe2..69cdfe2 100644
--- a/importers/actualbudget/src/models/budgeting_app/date_time_utc.rs
+++ b/backend/importers/actualbudget/src/models/budgeting_app/date_time_utc.rs
diff --git a/importers/actualbudget/src/models/budgeting_app/mod.rs b/backend/importers/actualbudget/src/models/budgeting_app/mod.rs
index bca0f99..bca0f99 100644
--- a/importers/actualbudget/src/models/budgeting_app/mod.rs
+++ b/backend/importers/actualbudget/src/models/budgeting_app/mod.rs
diff --git a/importers/actualbudget/src/models/budgeting_app/transaction.rs b/backend/importers/actualbudget/src/models/budgeting_app/transaction.rs
index e679e1e..e679e1e 100644
--- a/importers/actualbudget/src/models/budgeting_app/transaction.rs
+++ b/backend/importers/actualbudget/src/models/budgeting_app/transaction.rs
diff --git a/importers/actualbudget/src/models/budgeting_app/transaction_categorisation.rs b/backend/importers/actualbudget/src/models/budgeting_app/transaction_categorisation.rs
index ca7e7f5..ca7e7f5 100644
--- a/importers/actualbudget/src/models/budgeting_app/transaction_categorisation.rs
+++ b/backend/importers/actualbudget/src/models/budgeting_app/transaction_categorisation.rs
diff --git a/importers/actualbudget/src/models/mod.rs b/backend/importers/actualbudget/src/models/mod.rs
index cf1b71a..cf1b71a 100644
--- a/importers/actualbudget/src/models/mod.rs
+++ b/backend/importers/actualbudget/src/models/mod.rs
diff --git a/importers/actualbudget/src/transformers.rs b/backend/importers/actualbudget/src/transformers.rs
index 678ea05..678ea05 100644
--- a/importers/actualbudget/src/transformers.rs
+++ b/backend/importers/actualbudget/src/transformers.rs
diff --git a/backend/migrations/.keep b/backend/migrations/.keep
deleted file mode 100644
index e69de29..0000000
--- a/backend/migrations/.keep
+++ /dev/null