From 4fb1f8443f40fb1ad8fad7e50ce2f702520e1e4a Mon Sep 17 00:00:00 2001 From: Brandur Date: Thu, 2 Jul 2026 15:21:27 -0500 Subject: [PATCH] A couple tiny fixes for the changelog Tiny fixes for the changelog related to the v0.40.0. Just noticed them as I was copying content into the GitHub release. --- CHANGELOG.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 98371e6a..baa537f3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -26,12 +26,12 @@ go install github.com/riverqueue/river/cmd/river@latest river migrate-up --database-url "$DATABASE_URL" ``` -If not using River's internal migration system, the raw SQL can alternatively be dumped with: +If not using River's internal migration system, the raw SQL can alternatively be dumped with (or change `--database-url` to a Postgres URI for Postgres versions): ```shell go install github.com/riverqueue/river/cmd/river@latest -river migrate-get --database-url sqlite:// --version 6 --up > river7.up.sql -river migrate-get --database-url sqlite:// --version 6 --down > river7.down.sql +river migrate-get --database-url sqlite:// --version 7 --up > river7.up.sql +river migrate-get --database-url sqlite:// --version 7 --down > river7.down.sql ``` ### Added