pastebin / models /user.go
Akay Borana
Initial upload
421b222
raw
history blame contribute delete
344 Bytes
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"`
}