79455542

Date: 2025-02-20 18:56:19
Score: 0.5
Natty:
Report link

You should be able too index your created_at and updated_at fields in your models using:

type YourModel struct {
    CreatedAt time.Time `gorm:"index"`
    UpdatedAt time.Time `gorm:"index"`
}

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: lew