Rename everything.

This commit is contained in:
Aaron 2016-03-22 21:25:57 -07:00
commit 1394489a63
11 changed files with 99 additions and 97 deletions

View file

@ -14,8 +14,8 @@ import (
func init() {
cmdData = &CmdData{
Tables: []string{"patrick_table", "spiderman"},
Columns: [][]dbdrivers.DBColumn{
[]dbdrivers.DBColumn{
Columns: [][]dbdrivers.Column{
[]dbdrivers.Column{
{Name: "patrick_column", Type: "string", IsNullable: false},
{Name: "aaron_column", Type: "null.String", IsNullable: true},
{Name: "id", Type: "null.Int", IsNullable: true},
@ -24,13 +24,13 @@ func init() {
{Name: "fun_time", Type: "time.Time", IsNullable: false},
{Name: "cool_stuff_forever", Type: "[]byte", IsNullable: false},
},
[]dbdrivers.DBColumn{
[]dbdrivers.Column{
{Name: "patrick", Type: "string", IsNullable: false},
},
},
PkgName: "patrick",
OutFolder: "",
DBDriver: nil,
Interface: nil,
}
}