image.go 178 B

1234567891011121314
  1. package models
  2. import (
  3. "database/sql"
  4. "time"
  5. )
  6. type Image struct {
  7. ID int
  8. ThingID sql.NullInt64
  9. PlaceID sql.NullInt64
  10. Image string
  11. CreatedAt time.Time
  12. }