2022-12-20 21:45:52 +08:00
|
|
|
package model
|
|
|
|
|
2023-04-09 13:35:34 +08:00
|
|
|
import (
|
|
|
|
"time"
|
|
|
|
)
|
2022-12-20 21:45:52 +08:00
|
|
|
|
|
|
|
type Changelog struct {
|
2023-04-09 13:35:34 +08:00
|
|
|
ID uint `gorm:"primarykey"`
|
|
|
|
CreatedAt time.Time
|
2022-12-20 21:45:52 +08:00
|
|
|
Operation string `gorm:"index;not null;default:''"`
|
|
|
|
Target string `gorm:"index;not null;default:''"`
|
|
|
|
Result string `gorm:"not null;default:''"`
|
|
|
|
}
|