mirror of
https://codeberg.org/shroff/phylum.git
synced 2026-01-29 07:30:28 -06:00
38 lines
633 B
Go
38 lines
633 B
Go
// Code generated by sqlc. DO NOT EDIT.
|
|
// versions:
|
|
// sqlc v1.25.0
|
|
|
|
package sql
|
|
|
|
import (
|
|
"github.com/google/uuid"
|
|
"github.com/jackc/pgx/v5/pgtype"
|
|
)
|
|
|
|
type Library struct {
|
|
ID uuid.UUID
|
|
Owner int32
|
|
DisplayName string
|
|
Deleted pgtype.Timestamp
|
|
}
|
|
|
|
type Resource struct {
|
|
ID uuid.UUID
|
|
Parent *uuid.UUID
|
|
Name string
|
|
Dir bool
|
|
Created pgtype.Timestamp
|
|
Modified pgtype.Timestamp
|
|
Deleted pgtype.Timestamp
|
|
Size pgtype.Int4
|
|
Etag pgtype.Text
|
|
}
|
|
|
|
type User struct {
|
|
ID int32
|
|
DisplayName string
|
|
Username string
|
|
PasswordHash string
|
|
Deleted pgtype.Timestamp
|
|
}
|