Add northwind db.

This commit is contained in:
go-jet 2019-07-17 11:03:16 +02:00
parent 57added50a
commit 0a417a14d6
5 changed files with 139327 additions and 1 deletions

View file

@ -24,6 +24,7 @@ func main() {
"dvds",
"test_sample",
"chinook",
"northwind",
}
for _, schemaName := range schemaNames {
@ -33,6 +34,8 @@ func main() {
_, err = db.Exec(string(testSampleSql))
panicOnError(err)
err = postgres.Generate("./.gentestdata", postgres.DBConnection{
Host: dbconfig.Host,
Port: "5432",