blob: d5027b26f692076adf7347bb3ea36eaf34a90a66 [file] [log] [blame]
// Code generated by sqlc. DO NOT EDIT.
package db
import (
"database/sql"
"time"
"github.com/google/uuid"
)
type Migration struct {
Version int64
Dirty bool
}
type Task struct {
WorkflowID uuid.UUID
Name string
Finished bool
Result sql.NullString
Error sql.NullString
CreatedAt time.Time
UpdatedAt time.Time
}
type Workflow struct {
ID uuid.UUID
Params sql.NullString
Name sql.NullString
CreatedAt time.Time
UpdatedAt time.Time
}