Files
cms/pkg/db/base.go
T
2026-05-30 14:15:50 -05:00

15 lines
189 B
Go

package db
import (
"time"
"gorm.io/gorm"
)
type Base struct {
ID uint `gorm:"primarykey"`
CreatedAt time.Time
UpdatedAt time.Time
DeletedAt gorm.DeletedAt `gorm:"index"`
}