12 lines
315 B
Go
12 lines
315 B
Go
package models
|
|
|
|
import "time"
|
|
|
|
type Role struct {
|
|
ID uint `gorm:"primaryKey" json:"id"`
|
|
Name string `gorm:"uniqueIndex;size:50" json:"name"`
|
|
Description string `gorm:"size:255" json:"description"`
|
|
CreatedAt time.Time `json:"created_at"`
|
|
UpdatedAt time.Time `json:"updated_at"`
|
|
}
|