Merged in feature/textextract (pull request #108)

Start adding Textract + UUID changes

* base

* startclient

* ts

* short

* tests
This commit is contained in:
Michael McGuinness
2025-03-20 11:06:41 +00:00
parent 1587da9d11
commit 53ea7d34e6
196 changed files with 25972 additions and 1456 deletions
+13 -2
View File
@@ -6,8 +6,8 @@ servers:
sql:
- name: "db"
engine: "postgresql"
queries: "database/queries/"
schema: "database/migrations"
queries: "internal/database/queries/"
schema: "internal/database/migrations"
rules:
- sqlc/db-prepare
- no-delete
@@ -28,6 +28,17 @@ sql:
emit_params_struct_pointers: true
emit_enum_valid_method: true
emit_sql_as_comment: true
overrides:
- db_type: "uuid"
go_type:
import: "github.com/google/uuid"
type: "UUID"
- db_type: "uuid"
nullable: true
go_type:
import: "github.com/google/uuid"
type: "UUID"
pointer: true
rules:
- name: no-pg
message: "invalid engine: not postgresql"