fix: remove PrivateKey, rename PublicKey in Key model

This commit is contained in:
Derrick Hammer 2023-04-30 04:47:32 -04:00
parent 48164ec320
commit 00f2b962a0
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 6 additions and 7 deletions

View File

@ -10,8 +10,7 @@ type Key struct {
ID uint `gorm:"primaryKey"`
AccountID uint
Account Account
PublicKey string
PrivateKey string
Pubkey string
CreatedAt time.Time
UpdatedAt time.Time
}