Files
2026-05-31 17:35:41 -05:00

15 lines
195 B
Go

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