package
Version:
v0.2.0
Opens a new window with list of versions in this module.
Published: Jan 4, 2026
License: MIT
Opens a new window with license information.
Imports: 3
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
type PersonDB struct {
ID uint `gorm:"primaryKey;autoIncrement"`
Name string `gorm:"not null"`
Email string `gorm:"not null"`
}
type UserDB struct {
ID uint `gorm:"primaryKey;autoIncrement"`
Username string `gorm:"not null"`
Password string `gorm:"not null"`
PersonID uint `gorm:"not null"`
Person PersonDB `gorm:"column:person_id;not null"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.