mirror of
https://github.com/pressly/goose.git
synced 2025-05-31 11:42:04 +00:00
Merge pull request #30 from itsjamie/go-template-lint-errs
Golint fixes
This commit is contained in:
commit
1da0b166cb
@ -152,14 +152,16 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
goose.AddMigration(Up_{{.}}, Down_{{.}})
|
goose.AddMigration(Up{{.}}, Down{{.}})
|
||||||
}
|
}
|
||||||
|
|
||||||
func Up_{{.}}(tx *sql.Tx) error {
|
// Up{{.}} updates the database to the new requirements
|
||||||
|
func Up{{.}}(tx *sql.Tx) error {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func Down_{{.}}(tx *sql.Tx) error {
|
// Down{{.}} should send the database back to the state it was from before Up was ran
|
||||||
|
func Down{{.}}(tx *sql.Tx) error {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
`))
|
`))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user