gorm-goose/db-sample/migrations/20130106222315_and_again.go
2016-09-09 15:12:30 +03:00

16 lines
259 B
Go

package main
import (
"fmt"
"github.com/jinzhu/gorm"
)
func Up_20130106222315(txn *gorm.DB) {
fmt.Println("Hello from migration 20130106222315 Up!")
}
func Down_20130106222315(txn *gorm.DB) {
fmt.Println("Hello from migration 20130106222315 Down!")
}