all repos — homestead @ 6e3b3d209b4e70fe2edc8d96ea8473efcd075bb9

Code for my website

shared/storage/sqlite/db/models.go (view raw)

// Code generated by sqlc. DO NOT EDIT.
// versions:
//   sqlc v1.29.0

package db

type Content struct {
	ContentID int64
	FileID    int64
	Encoding  string
	Body      []byte
}

type File struct {
	FileID       int64
	UrlID        int64
	ContentType  string
	LastModified int64
	Title        string
	Etag         string
	Headers      []byte
}

type Url struct {
	UrlID int64
	Path  string
}