Fix null package imports, finish Bind

* Fix randomizeStruct time randomization
* Defer close sql.Rows
* Begin Delete test template
This commit is contained in:
Patrick O'brien 2016-06-08 15:45:34 +10:00
parent a20574110c
commit 7aba7104a5
18 changed files with 157 additions and 61 deletions

View file

@ -9,7 +9,7 @@ import (
"fmt"
"os"
"github.com/pobri19/sqlboiler/cmds"
"github.com/nullbio/sqlboiler/cmds"
"github.com/spf13/cobra"
)
@ -29,7 +29,7 @@ func main() {
Use: "sqlboiler",
Short: "SQL Boiler generates boilerplate structs and statements",
Long: "SQL Boiler generates boilerplate structs and statements from the template files.\n" +
`Complete documentation is available at http://github.com/pobri19/sqlboiler`,
`Complete documentation is available at http://github.com/nullbio/sqlboiler`,
PreRunE: func(cmd *cobra.Command, args []string) error {
return cmdData.SQLBoilerPreRun(cmd, args)
},