aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhaappi <74637670+haappi@users.noreply.github.com>2025-05-24 04:51:18 -0500
committerGitHub <noreply@github.com>2025-05-24 10:51:18 +0100
commit5f3fe5d1a1ad0abd2890283cbff45086cbfa442e (patch)
tree0e9a4a216c008c9039121b15a973af6811915a22
parentc6d21afa17775270bb8e65dd1b6df09023147f01 (diff)
downloadkarakeep-5f3fe5d1a1ad0abd2890283cbff45086cbfa442e.tar.zst
docs: Update database docs (#1451)
-rw-r--r--docs/docs/07-Development/01-setup.md2
-rw-r--r--docs/docs/07-Development/03-database.md4
2 files changed, 3 insertions, 3 deletions
diff --git a/docs/docs/07-Development/01-setup.md b/docs/docs/07-Development/01-setup.md
index e73b1705..2d668556 100644
--- a/docs/docs/07-Development/01-setup.md
+++ b/docs/docs/07-Development/01-setup.md
@@ -40,7 +40,7 @@ Output of a successful `pnpm install` run should look something like:
Scope: all 20 workspace projects
Lockfile is up to date, resolution step is skipped
Packages: +3129
-+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Progress: resolved 0, reused 2699, downloaded 0, added 3129, done
devDependencies:
diff --git a/docs/docs/07-Development/03-database.md b/docs/docs/07-Development/03-database.md
index 40e2d164..5168e00d 100644
--- a/docs/docs/07-Development/03-database.md
+++ b/docs/docs/07-Development/03-database.md
@@ -2,8 +2,8 @@
- The database schema lives in `packages/db/schema.ts`.
- Changing the schema, requires a migration.
-- You can generate the migration by running `pnpm drizzle-kit generate:sqlite` in the `packages/db` dir.
-- You can then apply the migration by running `pnpm run migrate`.
+- You can generate the migration by running `pnpm drizzle-kit generate` in the `packages/db` dir.
+- You can then apply the migration by running `pnpm run db:migrate`.
## Drizzle Studio