| 123456789101112131415 |
- <?php
- /**
- * Author: 芸众商城 www.yunzshop.com
- * Date: 2017/7/24
- * Time: 上午11:46
- */
- return [
- app\common\events\PluginWasEnabled::class => function ($plugins) {
- \Artisan::call('migrate',['--path'=>'plugins/face-payment/migrations','--force'=>true]);
- },
- app\common\events\PluginWasDeleted::class => function ($plugins) {
- \Artisan::call('migrate:rollback',['--path'=>'plugins/face-payment/migrations','--force'=>true]);
- },
- ];
|