From 1d6448a192a3f31424cc52db8c30a3f1f2c88c35 Mon Sep 17 00:00:00 2001
From: Frankie <26727138+frankievalentine@users.noreply.github.com>
Date: Fri, 27 Dec 2024 19:00:39 -0800
Subject: [PATCH] Update installation.md to include database migrations
Add instructions after running `sail up` to run the database migrations.
---
resources/docs/inertia/installation.md | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/resources/docs/inertia/installation.md b/resources/docs/inertia/installation.md
index a10e9a8..e4471b2 100644
--- a/resources/docs/inertia/installation.md
+++ b/resources/docs/inertia/installation.md
@@ -63,7 +63,13 @@ cd chirper
./vendor/bin/sail npm --version
```
-Once the application's Docker containers have been started, you can access the application in your web browser at: [http://localhost](http://localhost).
+Once the application's Docker containers have started, you should run your application's database migrations:
+
+```shell
+./vendor/bin/sail artisan migrate
+```
+
+After the database has completed the migrations, you can access the application in your web browser at: [http://localhost](http://localhost).