├── LICENSE ├── README.md ├── generated ├── db.go ├── fields.go └── public │ ├── authors │ └── authors.go │ ├── books │ └── books.go │ └── enum │ └── booktype.go ├── gnorm.sql ├── gnorm.toml └── gnorm_templates ├── db.gotmpl ├── enum.gotmpl ├── fields.gotmpl ├── plugin ├── plugin └── plugin.go └── table.gotmpl /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnormal/postgres-go/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnormal/postgres-go/HEAD/README.md -------------------------------------------------------------------------------- /generated/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnormal/postgres-go/HEAD/generated/db.go -------------------------------------------------------------------------------- /generated/fields.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnormal/postgres-go/HEAD/generated/fields.go -------------------------------------------------------------------------------- /generated/public/authors/authors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnormal/postgres-go/HEAD/generated/public/authors/authors.go -------------------------------------------------------------------------------- /generated/public/books/books.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnormal/postgres-go/HEAD/generated/public/books/books.go -------------------------------------------------------------------------------- /generated/public/enum/booktype.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnormal/postgres-go/HEAD/generated/public/enum/booktype.go -------------------------------------------------------------------------------- /gnorm.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnormal/postgres-go/HEAD/gnorm.sql -------------------------------------------------------------------------------- /gnorm.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnormal/postgres-go/HEAD/gnorm.toml -------------------------------------------------------------------------------- /gnorm_templates/db.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnormal/postgres-go/HEAD/gnorm_templates/db.gotmpl -------------------------------------------------------------------------------- /gnorm_templates/enum.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnormal/postgres-go/HEAD/gnorm_templates/enum.gotmpl -------------------------------------------------------------------------------- /gnorm_templates/fields.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnormal/postgres-go/HEAD/gnorm_templates/fields.gotmpl -------------------------------------------------------------------------------- /gnorm_templates/plugin/plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnormal/postgres-go/HEAD/gnorm_templates/plugin/plugin -------------------------------------------------------------------------------- /gnorm_templates/plugin/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnormal/postgres-go/HEAD/gnorm_templates/plugin/plugin.go -------------------------------------------------------------------------------- /gnorm_templates/table.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnormal/postgres-go/HEAD/gnorm_templates/table.gotmpl --------------------------------------------------------------------------------