Files
tp/main_dc/yalarba/api_yal/internal/models/base.go
T
valitovgaziz 9ae4eeb33f modified: main_dc/yalarba/api_yal/internal/models/base.go
modified:   "main_dc/yalarba/api_yal/internal/models/\320\276bject.go"
delete UpdateHistory from base struct
2026-02-11 06:46:16 +05:00

14 lines
311 B
Go

package models
import (
"gorm.io/gorm"
"time"
)
type Base struct {
ID uint `gorm:"primaryKey" json:"id"`
CreatedAt time.Time `json:"created_at,omitempty"`
UpdatedAt time.Time `json:"updated_at,omitempty"`
DeletedAt gorm.DeletedAt `gorm:"index" json:"-"`
}