Files
tp/main_dc/yalarba/api_es/internal/models/base.go
T
valitovgaziz 276e94c460 modified: main_dc/yalarba/api_es/internal/models/base.go
new file:   main_dc/yalarba/api_es/internal/models/update_history.go
add UpdateHistory model into easysite102.ru
2026-01-22 04:52:38 +05:00

15 lines
405 B
Go

package models
import (
"gorm.io/gorm"
"time"
)
type Base struct {
ID uint `gorm:"primaryKey" json:"id"`
CreatedAt time.Time `json:"created_at"`
UpdatedAt time.Time `json:"updated_at"`
DeletedAt gorm.DeletedAt `gorm:"index" json:"-"`
UpdateHistories []UpdateHistory `gorm:"polymorphic:Model;polymorphicValue:base" json:"-"` // полностью скрываем
}