From c63bd171be103d606a2f8125710c1d4fb6e83086 Mon Sep 17 00:00:00 2001 From: Trevor Rosen Date: Wed, 5 Oct 2016 14:39:07 -0500 Subject: [PATCH] Fix README example to have DB string --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 60f4025..da63184 100644 --- a/README.md +++ b/README.md @@ -47,14 +47,14 @@ Commands: Create a new Go migration. - $ goose create AddSomeColumns + $ goose mysql "user:pass@host/db_name" create AddSomeColumns $ goose: created db/migrations/20130106093224_AddSomeColumns.go Edit the newly created script to define the behavior of your migration. You can also create an SQL migration: - $ goose create AddSomeColumns sql + $ goose mysql "user:pass@host/db_name" create AddSomeColumns sql $ goose: created db/migrations/20130106093224_AddSomeColumns.sql ## up