mirror of https://github.com/1Panel-dev/1Panel
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
571 B
25 lines
571 B
package migration
|
|
|
|
import (
|
|
"github.com/1Panel-dev/1Panel/core/global"
|
|
"github.com/1Panel-dev/1Panel/core/init/migration/migrations"
|
|
|
|
"github.com/go-gormigrate/gormigrate/v2"
|
|
)
|
|
|
|
func Init() {
|
|
m := gormigrate.New(global.DB, gormigrate.DefaultOptions, []*gormigrate.Migration{
|
|
migrations.AddTable,
|
|
migrations.InitSetting,
|
|
migrations.InitOneDrive,
|
|
migrations.InitMasterAddr,
|
|
migrations.InitHost,
|
|
migrations.InitTerminalSetting,
|
|
})
|
|
if err := m.Migrate(); err != nil {
|
|
global.LOG.Error(err)
|
|
panic(err)
|
|
}
|
|
global.LOG.Info("Migration run successfully")
|
|
}
|