15 lines
229 B
Go
15 lines
229 B
Go
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
|
|
}
|