mirror of
https://github.com/pressly/goose.git
synced 2025-05-14 03:19:42 +00:00
16 lines
259 B
Go
16 lines
259 B
Go
|
|
package main
|
|
|
|
import (
|
|
"database/sql"
|
|
"fmt"
|
|
)
|
|
|
|
func Up_20130106222315(txn *sql.Tx) {
|
|
fmt.Println("Hello from migration 20130106222315 Up!")
|
|
}
|
|
|
|
func Down_20130106222315(txn *sql.Tx) {
|
|
fmt.Println("Hello from migration 20130106222315 Down!")
|
|
}
|