From 51bbdcf1c4a2dc9db993fa968baebc374fc82628 Mon Sep 17 00:00:00 2001 From: bpaulien Date: Wed, 11 Dec 2024 18:53:54 -0500 Subject: [PATCH] Update database.md (#571) punctuation, phrasing for better understanding --- docs/contributing/project-details/database.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/contributing/project-details/database.md b/docs/contributing/project-details/database.md index 87fa0d3b..5dd81f36 100644 --- a/docs/contributing/project-details/database.md +++ b/docs/contributing/project-details/database.md @@ -4,6 +4,6 @@ Actual stores your data locally inside a SQLite database. You can see the defaul However this is not the 'current' structure, as the database is created as a copy from the default template, and then a series of migrations is run to get the database up to the current level. You can see these migrations in `/loot-core/migrations`. -On the front end, Actual sometimes uses views to display data. All the names with the `v_` prefix are actually views, not tables. The views are recreated every time the app starts and normalize the shape of the data to the internal tables. Makes it easy to change field names etc without actually touching the tables (especially important in this local-first world where syncing directly references tables and fields) +On the front end, Actual sometimes uses views to display data. All the names with the `v_` prefix are actually views, not tables. The views are recreated every time the app starts and normalize the shape of the data to the internal tables. this makes it easy to change field names etc. without actually touching the tables (especially important in this local-first world where syncing directly references tables and fields). -Much of the interesting functionality you might be interested in can be found in `/loot-core/src/server/db` +Much of the interesting functionality you might be curious about can be found in `/loot-core/src/server/db`