| 12345678910111213141516 |
- <?php
- /**
- * Created by PhpStorm.
- * User: win 10
- * Date: 2019/5/5
- * Time: 16:19
- */
- return [
- app\common\events\PluginWasEnabled::class => function ($plugins) {
- \Artisan::call('migrate',['--path'=>'plugins/customer-service/migrations','--force'=>true]);
- },
- app\common\events\PluginWasDeleted::class => function ($plugins) {
- \Artisan::call('migrate:rollback',['--path'=>'plugins/customer-service/migrations']);
- }
- ];
|