Skip to content

Instantly share code, notes, and snippets.

@Iverson
Created September 28, 2015 09:00
Show Gist options
  • Save Iverson/04483a8c3f4d439d17a2 to your computer and use it in GitHub Desktop.
Save Iverson/04483a8c3f4d439d17a2 to your computer and use it in GitHub Desktop.
type User struct {
gorm.Model
Email string
Password string
Apps []App
}
type App struct {
gorm.Model
Name string
UserID uint `sql:"index"`
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment