File size: 344 Bytes
421b222 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | package models
import (
"time"
)
type User struct {
ID uint `gorm:"primaryKey" json:"id"`
Username string `gorm:"uniqueIndex;size:50;not null" json:"username"`
Password string `gorm:"not null" json:"-"`
CreatedAt time.Time `json:"created_at"`
Pastes []Paste `gorm:"foreignKey:UserID" json:"pastes,omitempty"`
}
|