agent-orchestrator/backend/sqlc.yaml

111 lines
4.5 KiB
YAML

version: "2"
sql:
- engine: "sqlite"
schema: "internal/storage/sqlite/migrations"
queries: "internal/storage/sqlite/queries"
gen:
go:
package: "gen"
out: "internal/storage/sqlite/gen"
emit_json_tags: false
emit_prepared_queries: false
emit_interface: false
emit_empty_slices: true
initialisms:
- id
- url
- pr
- ci
overrides:
- column: "change_log.project_id"
go_type:
import: "github.com/aoagents/agent-orchestrator/backend/internal/domain"
type: "ProjectID"
- column: "change_log.session_id"
go_type:
import: "github.com/aoagents/agent-orchestrator/backend/internal/domain"
type: "SessionID"
pointer: true
- column: "change_log.event_type"
go_type:
import: "github.com/aoagents/agent-orchestrator/backend/internal/cdc"
type: "EventType"
- column: "pr.session_id"
go_type:
import: "github.com/aoagents/agent-orchestrator/backend/internal/domain"
type: "SessionID"
- column: "pr.pr_state"
go_type:
import: "github.com/aoagents/agent-orchestrator/backend/internal/domain"
type: "PRState"
- column: "pr.review_decision"
go_type:
import: "github.com/aoagents/agent-orchestrator/backend/internal/domain"
type: "ReviewDecision"
- column: "pr.ci_state"
go_type:
import: "github.com/aoagents/agent-orchestrator/backend/internal/domain"
type: "CIState"
- column: "pr.mergeability"
go_type:
import: "github.com/aoagents/agent-orchestrator/backend/internal/domain"
type: "Mergeability"
- column: "pr_checks.status"
go_type:
import: "github.com/aoagents/agent-orchestrator/backend/internal/domain"
type: "PRCheckStatus"
- column: "pr_comment.resolved"
go_type: "bool"
- column: "notifications.session_id"
go_type:
import: "github.com/aoagents/agent-orchestrator/backend/internal/domain"
type: "SessionID"
- column: "notifications.project_id"
go_type:
import: "github.com/aoagents/agent-orchestrator/backend/internal/domain"
type: "ProjectID"
- column: "notifications.type"
go_type:
import: "github.com/aoagents/agent-orchestrator/backend/internal/domain"
type: "NotificationType"
- column: "notifications.status"
go_type:
import: "github.com/aoagents/agent-orchestrator/backend/internal/domain"
type: "NotificationStatus"
- column: "projects.id"
go_type:
import: "github.com/aoagents/agent-orchestrator/backend/internal/domain"
type: "ProjectID"
- column: "workspace_repos.project_id"
go_type:
import: "github.com/aoagents/agent-orchestrator/backend/internal/domain"
type: "ProjectID"
- column: "session_worktrees.session_id"
go_type:
import: "github.com/aoagents/agent-orchestrator/backend/internal/domain"
type: "SessionID"
- column: "sessions.id"
go_type:
import: "github.com/aoagents/agent-orchestrator/backend/internal/domain"
type: "SessionID"
- column: "sessions.project_id"
go_type:
import: "github.com/aoagents/agent-orchestrator/backend/internal/domain"
type: "ProjectID"
- column: "sessions.issue_id"
go_type:
import: "github.com/aoagents/agent-orchestrator/backend/internal/domain"
type: "IssueID"
- column: "sessions.kind"
go_type:
import: "github.com/aoagents/agent-orchestrator/backend/internal/domain"
type: "SessionKind"
- column: "sessions.harness"
go_type:
import: "github.com/aoagents/agent-orchestrator/backend/internal/domain"
type: "AgentHarness"
- column: "sessions.activity_state"
go_type:
import: "github.com/aoagents/agent-orchestrator/backend/internal/domain"
type: "ActivityState"