├── .circleci └── config.yml ├── .gitignore ├── .goreleaser.yml ├── Gopkg.lock ├── Gopkg.toml ├── LICENSE ├── Makefile ├── README.md ├── cmd └── hakagi │ └── hakagi.go ├── examples └── example.sql ├── images ├── after_er.png └── before_er.png └── src ├── constraint └── constraint.go ├── database └── database.go ├── formatter └── formatter.go └── guess ├── guess.go └── guess_test.go /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syucream/hakagi/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syucream/hakagi/HEAD/.gitignore -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syucream/hakagi/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syucream/hakagi/HEAD/Gopkg.lock -------------------------------------------------------------------------------- /Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syucream/hakagi/HEAD/Gopkg.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syucream/hakagi/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syucream/hakagi/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syucream/hakagi/HEAD/README.md -------------------------------------------------------------------------------- /cmd/hakagi/hakagi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syucream/hakagi/HEAD/cmd/hakagi/hakagi.go -------------------------------------------------------------------------------- /examples/example.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syucream/hakagi/HEAD/examples/example.sql -------------------------------------------------------------------------------- /images/after_er.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syucream/hakagi/HEAD/images/after_er.png -------------------------------------------------------------------------------- /images/before_er.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syucream/hakagi/HEAD/images/before_er.png -------------------------------------------------------------------------------- /src/constraint/constraint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syucream/hakagi/HEAD/src/constraint/constraint.go -------------------------------------------------------------------------------- /src/database/database.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syucream/hakagi/HEAD/src/database/database.go -------------------------------------------------------------------------------- /src/formatter/formatter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syucream/hakagi/HEAD/src/formatter/formatter.go -------------------------------------------------------------------------------- /src/guess/guess.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syucream/hakagi/HEAD/src/guess/guess.go -------------------------------------------------------------------------------- /src/guess/guess_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syucream/hakagi/HEAD/src/guess/guess_test.go --------------------------------------------------------------------------------