mirror of
https://github.com/coder/coder.git
synced 2026-06-03 21:18:24 +00:00
591523a078
* chore: Move httpmw to /coderd directory httpmw is specific to coderd and should be scoped under coderd * chore: Move httpapi to /coderd directory httpapi is specific to coderd and should be scoped under coderd * chore: Move database to /coderd directory database is specific to coderd and should be scoped under coderd * chore: Update codecov & gitattributes for generated files * chore: Update Makefile
30 lines
832 B
YAML
30 lines
832 B
YAML
# sqlc is used to generate types from sql schema language.
|
|
# It was chosen to ensure type-safety when interacting with
|
|
# the database.
|
|
version: "1"
|
|
packages:
|
|
- name: "database"
|
|
path: "."
|
|
queries: "./query.sql"
|
|
schema: "./dump.sql"
|
|
engine: "postgresql"
|
|
emit_interface: true
|
|
emit_json_tags: true
|
|
emit_db_tags: true
|
|
# We replace the generated db file with our own
|
|
# to add support for transactions. This file is
|
|
# deleted after generation.
|
|
output_db_file_name: db_tmp.go
|
|
overrides:
|
|
- db_type: citext
|
|
go_type: string
|
|
rename:
|
|
api_key: APIKey
|
|
login_type_oidc: LoginTypeOIDC
|
|
oidc_access_token: OIDCAccessToken
|
|
oidc_expiry: OIDCExpiry
|
|
oidc_id_token: OIDCIDToken
|
|
oidc_refresh_token: OIDCRefreshToken
|
|
parameter_type_system_hcl: ParameterTypeSystemHCL
|
|
userstatus: UserStatus
|