/
rain
/
google-auth-bot
Обзор
Документация
Войти
/
rain
/
google-auth-bot
Код
Запросы
0
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
dev
internal/microservice-api/database/models.go
23 строки
371 B
Kirill
new telegram bot
10 апр 2024, 12:49
10 апр 2024, 12:49
d5e3609
Код
Авторство
О чём код?
package orm import ( "gorm.io/gorm" ) type User struct { gorm.Model Id uint64 `json:"id" gorm:"primaryKey"` LanguageISO string `json:"languageiso"` ToTPs []ToTP `json:"totps" gorm:"foreignKey:UserId"` } type ToTP struct { gorm.Model Id string `json:"id" gorm:"primaryKey"` Name string `json:"name"` UserId uint64 `json:"userid" gorm:"index"` }