Skip to content

Commit

Permalink
Update dbscheme.go
Browse files Browse the repository at this point in the history
  • Loading branch information
smowton authored May 31, 2022
1 parent f70f769 commit a5a402c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion go/extractor/dbscheme/dbscheme.go
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@ func AddDefaultSnippet(snippet string) bool {

// PrintDbScheme prints the schema of this database to the writer `w`
func PrintDbScheme(w io.Writer) {
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")
for _, snippet := range defaultSnippets {
fmt.Fprintf(w, "%s\n", snippet)
}
Expand Down

0 comments on commit a5a402c

Please sign in to comment.