From d6e8fe0292718c30342b3ed7f324dc21634b3bc6 Mon Sep 17 00:00:00 2001 From: "Vojtech Vitek (V-Teq)" Date: Sun, 6 Nov 2016 13:45:23 -0500 Subject: [PATCH] Revert "Fix README example to have DB string" This reverts commit c63bd171be103d606a2f8125710c1d4fb6e83086. Ref. #12 --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index da63184..60f4025 100644 --- a/README.md +++ b/README.md @@ -47,14 +47,14 @@ Commands: Create a new Go migration. - $ goose mysql "user:pass@host/db_name" create AddSomeColumns + $ goose 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 mysql "user:pass@host/db_name" create AddSomeColumns sql + $ goose create AddSomeColumns sql $ goose: created db/migrations/20130106093224_AddSomeColumns.sql ## up