From 3523b17cdc914ac56d49164136e7d8610244835a Mon Sep 17 00:00:00 2001 From: Josh Fyne Date: Wed, 29 Jun 2016 12:30:47 -0400 Subject: [PATCH] Remove misleading create documentation --- README.md | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) diff --git a/README.md b/README.md index aaaa334..ff11b50 100644 --- a/README.md +++ b/README.md @@ -43,20 +43,6 @@ Commands: dbversion Print the current version of the database ``` -## create - -Create a new Go migration. - - $ 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 create AddSomeColumns sql - $ goose: created db/migrations/20130106093224_AddSomeColumns.sql - ## up Apply all available migrations. @@ -106,7 +92,7 @@ Print the current version of the database: # Migrations -goose supports migrations written in SQL or in Go - see the `goose create` command above for details on how to generate them. +goose supports migrations written in SQL or in Go. ## SQL Migrations