summaryrefslogtreecommitdiff
path: root/models/models.go
blob: b36cc5907ac6a6c48a57c5a7b5fc27f577887a82 (plain)
1
2
3
4
5
6
7
8
9
package models 

type Blog struct {
	ID       uint      `gorm:"primaryKey" json:"id"`
	Title    string    `gorm:"not null" json:"title"`
	Content  string    `gorm:"not null" json:"content"`
	UserID   uint      `gorm:"not null" json:"user_id"`
}