Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 5 days 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 (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-01-11T01:59:49.000Z (almost 4 years ago)
- Last Synced: 2024-12-30T14:52:16.511Z (10 days ago)
- Topics: cli, command-line, database, laravel, php
- Language: PHP
- Homepage:
- Size: 36.1 KB
- Stars: 35
- Watchers: 2
- Forks: 2
- 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
[![Current Release](https://img.shields.io/github/release/ohseesoftware/laravel-schema-list.svg?style=flat-square)](https://github.com/ohseesoftware/laravel-schema-list/releases)
![Build Status Badge](https://github.com/ohseesoftware/laravel-schema-list/workflows/Build/badge.svg)
[![Downloads](https://img.shields.io/packagist/dt/ohseesoftware/laravel-schema-list.svg?style=flat-square)](https://packagist.org/packages/ohseesoftware/laravel-schema-list)
[![MIT License](https://img.shields.io/github/license/ohseesoftware/laravel-schema-list.svg?style=flat-square)](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).