mirror of
https://github.com/Damillora/Shioriko.git
synced 2024-11-14 17:17:32 +00:00
13 lines
154 B
Go
13 lines
154 B
Go
package database
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type Blob struct {
|
|
ID string `gorm:"size:36"`
|
|
FilePath string
|
|
CreatedAt time.Time
|
|
UpdatedAt time.Time
|
|
}
|