mirror of
https://github.com/pressly/goose.git
synced 2025-07-15 00:28:10 +00:00
20 lines
230 B
Go
20 lines
230 B
Go
package migrations
|
|
|
|
import (
|
|
"database/sql"
|
|
|
|
"github.com/pressly/goose/v4"
|
|
)
|
|
|
|
func init() {
|
|
goose.Register(Up00002, Down00002)
|
|
}
|
|
|
|
func Up00002(tx *sql.Tx) error {
|
|
return nil
|
|
}
|
|
|
|
func Down00002(tx *sql.Tx) error {
|
|
return nil
|
|
}
|