KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
ignition-migrations
★ 22
Open GitHub ↗
No description available.
Download README (.md)
Explore Similar Repositories
ply_tools
:
Addon that adds new operators to the Blender 2.8x context menu, for instance the Origin to Selection operator.
modeltools
:
GO语言连接Mysql生成对应的model,包括对应字段类型、注释等。生成基础的结构体,不局限于某一个ORM。
unlzexe
:
Utility to decompress EXE files that are compressed with LZEXE Ver. 0.90/0.91
Flutter-Bloc-Example
:
How to architect Flutter Code according to BLoC Pattern.
pas2dart
:
Object Pascal (Free Pascal 3, Delphi 2007) to Dart (2.5) transpiler
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
ignition-migrations
?
Download (.md)
# An ignition package to show your migrations and their status. [](https://packagist.org/packages/mazedlx/ignition-migrations) [](https://travis-ci.org/mazedlx/ignition-migrations) [](https://packagist.org/packages/mazedlx/ignition-migrations) [](https://img.shields.io/github/license/mazedlx/ignition-migrations) All your migrations at a glance.  ## Installation You can install the package in to a Laravel app that uses [Ignition](https://flareapp.io) via composer: ```bash composer require mazedlx/ignition-migrations ``` Then add the Migrations tab to your Ignition tabs e.g. in your `AppServiceProvider`: ```php /** * Bootstrap any application services. * * @return void */ public function boot() { Ignition::tab(new MigrationsTab); } ``` If you want to change the output style you can run ```bash $ php artisan vendor:publish --provider="Mazedlx\MigrationsTab\TabServiceProvider" ``` which will create `ignition-migrations.php` in your `config` folder: ```php <?php return [ /* * You can choose if you want the output to be * raw, like it would look in your terminal, or to be * html, which will display a nice HTML table. */ 'view' => 'raw', ]; ``` Change `view` to `html` and the tab's output will look like:  ## Usage Click on the "Migrations" tab on your Ignition screen to see all your mgirations and call various `php artisan migrate` commands right from your browser. ### Testing ```bash composer test ``` ### Changelog Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently. ## Contributing Please see [CONTRIBUTING](CONTRIBUTING.md) for details. ### Security If you discover any security related issues, please email mazedlx@gmail.com instead of using the issue tracker. ## Credits - [Christian Leo-Pernold](https://github.com/mazedlx) ## License The MIT License (MIT). Please see [License File](LICENSE.md) for more information.