gorm/migrator/migrator.go

15 lines
229 B
Go
Raw Normal View History

2020-01-28 18:01:35 +03:00
package migrator
import "github.com/jinzhu/gorm"
// Migrator migrator struct
type Migrator struct {
*Config
}
// Config schema config
type Config struct {
CheckExistsBeforeDropping bool
DB *gorm.DB
}