Skip to content

sqlc: allow array for queries field #289

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 3, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion sqlc/kcl.mod
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "sqlc"
edition = "v0.9.0"
version = "0.0.4"
version = "0.0.5"
description = "sqlc.dev schema config file"
2 changes: 1 addition & 1 deletion sqlc/sqlc.k
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ schema ConfigSql:
# Directory of SQL migrations or path to single SQL file; or a list of paths.
$schema: str
# Directory of SQL queries or path to single SQL file; or a list of paths.
queries?: str
queries?: str|[str]
# A collection of mappings to configure code generators.
# See codegen for the supported keys.
# https://docs.sqlc.dev/en/latest/reference/config.html#codegen
Expand Down