Files
MyClub/internal/models/base_model.go
T
Tomáš Dvořák 12cba639b9 upload
2025-10-16 13:32:05 +02:00

16 lines
328 B
Go

package models
import (
"time"
"gorm.io/gorm"
)
// BaseModel contains common fields for all models
type BaseModel 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:"-"`
}