https://github.com/ohseesoftware/laravel-schema-list
List tables, columns, and indices for your database connections.
https://github.com/ohseesoftware/laravel-schema-list
cli command-line database laravel php
Last synced: 3 months ago
JSON representation
List tables, columns, and indices for your database connections.
- Host: GitHub
- URL: https://github.com/ohseesoftware/laravel-schema-list
- Owner: ohseesoftware
- License: mit
- Created: 2020-05-01T16:55:30.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-01-11T01:59:49.000Z (over 4 years ago)
- Last Synced: 2025-04-04T17:48:58.382Z (3 months ago)
- Topics: cli, command-line, database, laravel, php
- Language: PHP
- Homepage:
- Size: 36.1 KB
- Stars: 35
- Watchers: 1
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
Awesome Lists containing this project
README
# List schema details from your database connection
[](https://github.com/ohseesoftware/laravel-schema-list/releases)

[](https://packagist.org/packages/ohseesoftware/laravel-schema-list)
[](https://github.com/ohseesoftware/laravel-schema-list/blob/master/LICENSE)Use the command line to easily list out your database's tables and columns for a given table.
## Installation
You can install the package via composer:
```bash
composer require ohseesoftware/laravel-schema-list
```## Usage
List tables from your default connection:
```
php artisan schema:tables
```List columns for a given table:
```
php artisan schema:columns {table}
```### Testing
No tests right now :)
### Changelog
Please see [CHANGELOG](CHANGELOG.md) for more information what has changed recently.
## Contributing
Please see [CONTRIBUTING](CONTRIBUTING.md) for details.
### Security
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
## Credits
- [Owen Conti](https://github.com/ohseesoftware)
- [All Contributors](../../contributors)## License
The MIT License (MIT). Please see [License File](LICENSE.md) for more information.
## Laravel Package Boilerplate
This package was generated using the [Laravel Package Boilerplate](https://laravelpackageboilerplate.com).