Skip to content

Commit 380a55e

Browse files
authored
docs: clarify that migrations must be applied manually after starting local DB (supabase#36511)
docs: clarify manual migration step after starting local database (fix supabase#35078)
1 parent b1ad764 commit 380a55e

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

apps/docs/content/guides/local-development/declarative-database-schemas.mdx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,15 +74,16 @@ supabase db diff -f create_employees_table
7474

7575
<StepHikeCompact.Step step={3}>
7676
<StepHikeCompact.Details title="Start the local database and apply migrations">
77-
Start the local database and then apply the migration file to see your schema changes in the local Dashboard.
77+
Start the local database first. Then, apply the migration manually to see your schema changes in the local Dashboard.
7878
</StepHikeCompact.Details>
7979

8080
<StepHikeCompact.Code>
8181

8282
<$CodeTabs>
8383

8484
```bash name=Terminal
85-
supabase start && supabase migration up
85+
supabase start
86+
supabase migration up
8687
```
8788

8889
</$CodeTabs>

0 commit comments

Comments
 (0)