2017 © Pedro Peláez
 

library laravel-cadillac

A database tool.

image

qsnh/laravel-cadillac

A database tool.

  • Wednesday, March 28, 2018
  • by 轻色年华
  • Repository
  • 1 Watchers
  • 42 Stars
  • 45 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 2 Forks
  • 0 Open issues
  • 2 Versions
  • 18 % Grown

The README.md

Laravel-Cadillac

This package develop on laravel, please confirm use it on laravel project.In the daily development, some structures of the data table may have certain changes, such as: add one field or remove one field. If the development cycle of the project is long, we may forget about the structure of some data tables so that we need to look at the Migration file or enter Mysql to see the structure of the data table, but I think this is a waste of time! Therefore, I developed this package. When we need to look at the structure of data tables that we do not remember very clearly, we only need one command!, (*1)

中文文档, (*2)

Compatible DB Engines

  • MySQL

Installation

composer require qsnh/laravel-cadillac dev-master --dev

It's recommended use it in develop environment., (*3)

Command

php artisan cadillac [tableName] --export --html

Show all tables in current database

php artisan cadillac

php artisan cadillac, (*4)

Show a table structure

php artisan cadillac tableName

php artisan cadillac tableName, (*5)

Import all the table structures of the current database into the MARKDOWN file

php artisan cadillac --export

php artisan cadillac --export, (*6)

Import all the table structures of the current database into the HTML file

php artisan cadillac --export --html

php artisan cadillac --export --html, (*7)

php artisan cadillac --f=users

output:, (*8)

id,name,email,password,remember_token,created_at,updated_at

and if u add --q params,it will print:, (*9)

'id','name','email','password','remember_token','created_at','updated_at'

Author

Qsnh, (*10)

License

MIT, (*11)

The Versions

28/03 2018

dev-master

9999999-dev

A database tool.

  Sources   Download

MIT

by XiaoTeng

database laravel

24/03 2018

v1.0.0

1.0.0.0

A database tool.

  Sources   Download

MIT

by XiaoTeng

database laravel