Files
phylum/internal/sql/models.go
Abhishek Shroff e29fd4535c Libraries
2024-03-13 21:34:34 +05:30

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
}