gorm-goose/db-sample/migrations/20130106222315_and_again.go
2024-05-06 14:26:31 +02:00

16 lines
255 B
Go

package migrations
import (
"fmt"
"gorm.io/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!")
}