stephenafamo / bob

SQL query builder and ORM/Factory generator for Go with support for PostgreSQL, MySQL and SQLite
https://bob.stephenafamo.com
MIT License
701 stars 37 forks source link

Fix incorrect database names in `bobgen-mysql` and `bobgen-sqlite` usage descriptions #236

Closed mbezhanov closed 2 weeks ago

mbezhanov commented 2 weeks ago

I noticed the following small inconsistencies in the bobgen-* command descriptions while experimenting with factories and code generation.

bobgen-mysql

go run github.com/stephenafamo/bob/gen/bobgen-mysql@latest --help

NAME:
   bobgen-mysql - Generate models and factories from your **PostgreSQL** database

bobgen-sqlite

go run github.com/stephenafamo/bob/gen/bobgen-sqlite@latest --help

NAME:
   bobgen-sqlite - Generate models and factories from your **PostgreSQL** database

This pull request corrects them accordingly.