2023-04-29 17:38:21 +00:00
|
|
|
package model
|
|
|
|
|
|
|
|
import (
|
|
|
|
"gorm.io/gorm"
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
type Key struct {
|
|
|
|
gorm.Model
|
2023-06-29 10:19:50 +00:00
|
|
|
ID uint `gorm:"primaryKey" gorm:"AUTO_INCREMENT"`
|
2023-04-30 08:47:32 +00:00
|
|
|
AccountID uint
|
|
|
|
Account Account
|
|
|
|
Pubkey string
|
|
|
|
CreatedAt time.Time
|
|
|
|
UpdatedAt time.Time
|
2023-04-29 17:38:21 +00:00
|
|
|
}
|