Skip to content

Commit

Permalink
Fix CockroachDB tutorial's link being relative to 'GETTING_STARTED.md' (
Browse files Browse the repository at this point in the history
golang-migrate#819)

* Fix link root

Fix the link root so that it doesn't point relatively.

* Simplify to just the / root
  • Loading branch information
Nintron27 authored Oct 19, 2022
1 parent 4ca6c06 commit 5ff4dc8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions database/cockroachdb/TUTORIAL.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ And in the `.down.sql` let's delete it:
```
DROP TABLE IF EXISTS example.users;
```
By adding `IF EXISTS/IF NOT EXISTS` we are making migrations idempotent - you can read more about idempotency in [getting started](GETTING_STARTED.md#create-migrations)
By adding `IF EXISTS/IF NOT EXISTS` we are making migrations idempotent - you can read more about idempotency in [getting started](/GETTING_STARTED.md#create-migrations)

## Run migrations
```
Expand Down Expand Up @@ -139,4 +139,4 @@ func main() {
}
}
```
You can find details [here](README.md#use-in-your-go-project)
You can find details [here](README.md#use-in-your-go-project)

0 comments on commit 5ff4dc8

Please sign in to comment.