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.
29 lines
731 B
29 lines
731 B
package migration
|
|
|
|
import (
|
|
"github.com/1Panel-dev/1Panel/backend/global"
|
|
"github.com/1Panel-dev/1Panel/backend/init/migration/migrations"
|
|
|
|
"github.com/go-gormigrate/gormigrate/v2"
|
|
)
|
|
|
|
func Init() {
|
|
m := gormigrate.New(global.DB, gormigrate.DefaultOptions, []*gormigrate.Migration{
|
|
migrations.AddTableOperationLog,
|
|
migrations.AddTableHost,
|
|
migrations.AddTableMonitor,
|
|
migrations.AddTableSetting,
|
|
migrations.AddTableBackupAccount,
|
|
migrations.AddTableCronjob,
|
|
migrations.AddTableApp,
|
|
migrations.AddTableImageRepo,
|
|
migrations.AddTableWebsite,
|
|
migrations.AddTableDatabaseMysql,
|
|
})
|
|
if err := m.Migrate(); err != nil {
|
|
global.LOG.Error(err)
|
|
panic(err)
|
|
}
|
|
global.LOG.Info("Migration did run successfully")
|
|
}
|