mirror of
https://github.com/pressly/goose.git
synced 2025-05-31 11:42:04 +00:00
16 lines
216 B
Go
16 lines
216 B
Go
|
|
package migration_003
|
|
|
|
import (
|
|
"database/sql"
|
|
"fmt"
|
|
)
|
|
|
|
func Up(txn *sql.Tx) {
|
|
fmt.Println("Hello from migration_003 Up!")
|
|
}
|
|
|
|
func Down(txn *sql.Tx) {
|
|
fmt.Println("Hello from migration_003 Down!")
|
|
}
|