mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2026-09-23 08:00:55 +00:00
18 lines
503 B
Go
18 lines
503 B
Go
package migrations
|
|
|
|
import (
|
|
"github.com/1Panel-dev/1Panel/core/app/model"
|
|
"github.com/go-gormigrate/gormigrate/v2"
|
|
"gorm.io/gorm"
|
|
)
|
|
|
|
var AddAPIKeys = &gormigrate.Migration{
|
|
ID: "20260915-api-keys",
|
|
Migrate: func(tx *gorm.DB) error { return tx.AutoMigrate(&model.APIKey{}, &model.LegacyAPIKeyPolicy{}) },
|
|
}
|
|
|
|
var AddOperationLogAPIKey = &gormigrate.Migration{
|
|
ID: "20260915-add-operation-log-api-key",
|
|
Migrate: func(tx *gorm.DB) error { return tx.AutoMigrate(&model.OperationLog{}) },
|
|
}
|