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