2024-01-16 01:58:20 +00:00
|
|
|
package models
|
|
|
|
|
|
|
|
import "gorm.io/gorm"
|
|
|
|
|
2024-02-29 02:20:05 +00:00
|
|
|
func init() {
|
|
|
|
registerModel(&PublicKey{})
|
|
|
|
}
|
|
|
|
|
2024-01-16 01:58:20 +00:00
|
|
|
type PublicKey struct {
|
|
|
|
gorm.Model
|
|
|
|
UserID uint
|
2024-02-14 05:13:28 +00:00
|
|
|
Key string `gorm:"unique;not null"`
|
2024-01-16 01:58:20 +00:00
|
|
|
User User
|
|
|
|
}
|