package models import "time" // Describes a user boosting one note type NoteToBoost struct { ID uint `gorm:"primarykey"` CreatedAt time.Time User User UserId string Note Note NoteId string }