14 lines
254 B
Go
14 lines
254 B
Go
|
|
package entity
|
||
|
|
|
||
|
|
import (
|
||
|
|
"time"
|
||
|
|
)
|
||
|
|
|
||
|
|
type CsrfTokenRecords struct {
|
||
|
|
ID uint `gorm:"primaryKey"`
|
||
|
|
Token string `gorm:"uniqueIndex;size:255"`
|
||
|
|
Value []byte `gorm:"value"`
|
||
|
|
ExpireAt time.Time `gorm:"index"`
|
||
|
|
CreatedAt time.Time
|
||
|
|
}
|