From c8acd33b782d702995222d9ed3877703bbd42f63 Mon Sep 17 00:00:00 2001 From: Noah Sprent <39567418+noahsprent@users.noreply.github.com> Date: Sun, 9 Nov 2025 18:35:32 +0000 Subject: [PATCH] Fix broken link Currently /developer-guide/developer-guide --- .../09-Storage and the filesystem/01-data-stores/02-sqlite.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/developer-guide/09-Storage and the filesystem/01-data-stores/02-sqlite.md b/developer-guide/09-Storage and the filesystem/01-data-stores/02-sqlite.md index be674021d..5396c0ca4 100644 --- a/developer-guide/09-Storage and the filesystem/01-data-stores/02-sqlite.md +++ b/developer-guide/09-Storage and the filesystem/01-data-stores/02-sqlite.md @@ -18,7 +18,7 @@ You can either use `.tables` in the sqlite shell, or visit all the tables [schem ### How can I add new SQL tables? -Using the sqlite shell (`pio db`), you can execute any SQL statements, including creating new tables. Plugins can also automatically create new tables when installed, [see instructions here](developer-guide/plugin-as-python-package#5-optional-adding-tables-to-the-sql-store). +Using the sqlite shell (`pio db`), you can execute any SQL statements, including creating new tables. Plugins can also automatically create new tables when installed, [see instructions here](plugin-as-python-package#5-optional-adding-tables-to-the-sql-store). ### How do I populate my own SQL tables?