32 lines
584 B
Go
32 lines
584 B
Go
// Code generated by sqlc. DO NOT EDIT.
|
|
// versions:
|
|
// sqlc v1.29.0
|
|
|
|
package sqlc
|
|
|
|
import (
|
|
"github.com/jackc/pgx/v5/pgtype"
|
|
)
|
|
|
|
type File struct {
|
|
ID pgtype.UUID
|
|
Name string
|
|
Description pgtype.Text
|
|
Mimetype string
|
|
Size int64
|
|
Blake2 []byte
|
|
Created pgtype.Timestamp
|
|
Updated pgtype.Timestamp
|
|
}
|
|
|
|
type ProcessingJob struct {
|
|
ID int32
|
|
FileID pgtype.UUID
|
|
Created pgtype.Timestamp
|
|
Started pgtype.Timestamp
|
|
Completed pgtype.Timestamp
|
|
Status pgtype.Text
|
|
JobType pgtype.Text
|
|
Error pgtype.Text
|
|
Messages []byte
|
|
}
|