├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── formats ├── csv.go ├── export.go ├── inserts.go ├── json.go ├── jsonlines.go ├── template.go ├── xlsx.go └── xml.go ├── logo.png ├── pg └── postgres.go ├── pgclimb.go └── test.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukasmartinelli/pgclimb/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukasmartinelli/pgclimb/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukasmartinelli/pgclimb/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukasmartinelli/pgclimb/HEAD/README.md -------------------------------------------------------------------------------- /formats/csv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukasmartinelli/pgclimb/HEAD/formats/csv.go -------------------------------------------------------------------------------- /formats/export.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukasmartinelli/pgclimb/HEAD/formats/export.go -------------------------------------------------------------------------------- /formats/inserts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukasmartinelli/pgclimb/HEAD/formats/inserts.go -------------------------------------------------------------------------------- /formats/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukasmartinelli/pgclimb/HEAD/formats/json.go -------------------------------------------------------------------------------- /formats/jsonlines.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukasmartinelli/pgclimb/HEAD/formats/jsonlines.go -------------------------------------------------------------------------------- /formats/template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukasmartinelli/pgclimb/HEAD/formats/template.go -------------------------------------------------------------------------------- /formats/xlsx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukasmartinelli/pgclimb/HEAD/formats/xlsx.go -------------------------------------------------------------------------------- /formats/xml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukasmartinelli/pgclimb/HEAD/formats/xml.go -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukasmartinelli/pgclimb/HEAD/logo.png -------------------------------------------------------------------------------- /pg/postgres.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukasmartinelli/pgclimb/HEAD/pg/postgres.go -------------------------------------------------------------------------------- /pgclimb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukasmartinelli/pgclimb/HEAD/pgclimb.go -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukasmartinelli/pgclimb/HEAD/test.sh --------------------------------------------------------------------------------