Skip to content

Instantly share code, notes, and snippets.

@bastianccm
Created February 26, 2020 13:09
Show Gist options
  • Save bastianccm/f31e2586fd1b61443a14ac4bbcfbba38 to your computer and use it in GitHub Desktop.
Save bastianccm/f31e2586fd1b61443a14ac4bbcfbba38 to your computer and use it in GitHub Desktop.
package polls
import (
"time"
"github.com/jinzhu/gorm"
)
type Question struct {
gorm.Model
QuestionText string
PubDate time.Time
Choices []Choice
}
type Choice struct {
gorm.Model
QuestionID uint
ChoiceText string
Votes int
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment