Advertisement
XiaYuanOwO

Untitled

Dec 9th, 2024
22
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. type LoginHistory struct {
  2. gorm.Model
  3. ID int `gorm:"primary_key;auto_increment:false"`
  4. UID int
  5. Type string `gorm:"type:varchar(255); not null"`
  6. QQ []int8 `gorm:"type:varchar(255); not null"`
  7. Hwid string `gorm:"type:varchar(255); not null"`
  8. Fingerprint string `gorm:"type:varchar(255); not null"`
  9. UA string `gorm:"type:jsonb; not null"`
  10. IP string `gorm:"type:varchar(255); not null"`
  11. IPGeo string `gorm:"type:jsonb; not null"`
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement