package
Version:
v0.0.0-...-6134ab3
Opens a new window with list of versions in this module.
Published: Dec 10, 2022
License: MIT
Opens a new window with license information.
Imports: 0
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
type Role struct {
ID uint `gorm:"primarykey"`
Name string `json:"name"`
Users []User `json:"users" gorm:"foreignKey:RoleID;"`
}
type User struct {
ID uint `gorm:"primarykey"`
Email string `json:"email"`
Password string `json:"password"`
RoleID uint `json:"-"`
Role *Role `json:"Role" gorm:"foreignKey:RoleID;references:ID;constraint:OnUpdate:CASCADE,OnDelete:SET NULL;"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.