We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ef1743 commit e46c29aCopy full SHA for e46c29a
go/extractor/dbscheme/dbscheme.go
@@ -410,7 +410,7 @@ func AddDefaultSnippet(snippet string) bool {
410
411
// PrintDbScheme prints the schema of this database to the writer `w`
412
func PrintDbScheme(w io.Writer) {
413
- fmt.Fprintf(w, "/** Auto-generated dbscheme; do not edit. */\n\n")
+ fmt.Fprintf(w, "/** Auto-generated dbscheme; do not edit. Run `go-gen-dbscheme` or `make ql/lib/go.dbscheme` to regenerate. */\n\n")
414
for _, snippet := range defaultSnippets {
415
fmt.Fprintf(w, "%s\n", snippet)
416
}
0 commit comments