Merge pull request #5 from jfyne/create

Create command
pull/6/head
Vojtech Vitek 2016-06-29 21:12:33 -04:00 committed by GitHub
commit 4dec8a31fd
5 changed files with 66 additions and 5 deletions

View File

@ -41,8 +41,8 @@ Commands:
redo Re-run the latest migration
status Dump the migration status for the current DB
dbversion Print the current version of the database
create Creates a blank migration template
```
## create
Create a new Go migration.
@ -106,7 +106,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

View File

@ -25,7 +25,7 @@ func main() {
flags.Parse(os.Args[1:])
args := flags.Args()
if len(args) != 3 {
if len(args) < 3 {
flags.Usage()
return
}
@ -57,7 +57,12 @@ func main() {
log.Fatalf("-dbstring=%q: %v\n", dbstring, err)
}
if err := goose.Run(command, db, *dir); err != nil {
arguments := []string{}
if len(args) > 3 {
arguments = append(arguments, args[3:]...)
}
if err := goose.Run(command, db, *dir, arguments...); err != nil {
log.Fatalf("goose run: %v", err)
}
}
@ -75,6 +80,7 @@ Examples:
goose postgres "user=postgres dbname=postgres sslmode=disable" up
goose mysql "user:password@/dbname" down
goose sqlite3 ./foo.db status
goose postgres "user=postgres dbname=postgres sslmode=disable" create init sql
Options:
`
@ -86,5 +92,6 @@ Commands:
redo Re-run the latest migration
status Dump the migration status for the current DB
dbversion Print the current version of the database
create Creates a blank migration template
`
)

18
create.go Normal file
View File

@ -0,0 +1,18 @@
package goose
import (
"database/sql"
"fmt"
"time"
)
// Create writes a new blank migration file.
func Create(db *sql.DB, dir, name, migrationType string) error {
path, err := CreateMigration(name, migrationType, dir, time.Now())
if err != nil {
return err
}
fmt.Println(fmt.Sprintf("Created %s migration at %s", migrationType, path))
return nil
}

View File

@ -5,7 +5,7 @@ import (
"fmt"
)
func Run(command string, db *sql.DB, dir string) error {
func Run(command string, db *sql.DB, dir string, args ...string) error {
switch command {
case "up":
if err := Up(db, dir); err != nil {
@ -15,6 +15,18 @@ func Run(command string, db *sql.DB, dir string) error {
if err := UpByOne(db, dir); err != nil {
return err
}
case "create":
if len(args) == 0 {
return fmt.Errorf("create must be of form: goose [OPTIONS] DRIVER DBSTRING create NAME [go|sql]")
}
migrationType := "go"
if len(args) == 2 {
migrationType = args[1]
}
if err := Create(db, dir, args[0], migrationType); err != nil {
return err
}
case "down":
if err := Down(db, dir); err != nil {
return err

View File

@ -393,6 +393,9 @@ func CreateMigration(name, migrationType, dir string, t time.Time) (path string,
fpath := filepath.Join(dir, filename)
tmpl := sqlMigrationTemplate
if migrationType == "go" {
tmpl = goSqlMigrationTemplate
}
path, err = writeTemplateToFile(fpath, tmpl, timestamp)
@ -422,3 +425,24 @@ var sqlMigrationTemplate = template.Must(template.New("goose.sql-migration").Par
-- SQL section 'Down' is executed when this migration is rolled back
`))
var goSqlMigrationTemplate = template.Must(template.New("goose.go-migration").Parse(`
package migration
import (
"database/sql"
"github.com/pressly/goose"
)
func init() {
goose.AddMigration(Up_{{.}}, Down_{{.}})
}
func Up_{{.}}(tx *sql.Tx) error {
return nil
}
func Down_{{.}}(tx *sql.Tx) error {
return nil
}
`))