Remove misleading create documentation

pull/4/head
Josh Fyne 2016-06-29 12:30:47 -04:00
parent 602cd2b9c7
commit 3523b17cdc
1 changed files with 1 additions and 15 deletions

View File

@ -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