15 lines
436 B
PHP
15 lines
436 B
PHP
<?php
|
|
/**
|
|
* Created by PhpStorm.
|
|
* Author:
|
|
* Date: 2017/6/14
|
|
* Time: 下午11:34
|
|
*/
|
|
return [
|
|
app\common\events\PluginWasEnabled::class => function ($plugins) {
|
|
\Artisan::call('migrate',['--path'=>'plugins/exhelper/migrations','--force'=>true]);
|
|
},
|
|
app\common\events\PluginWasDeleted::class => function ($plugins) {
|
|
\Artisan::call('migrate:rollback',['--path'=>'plugins/exhelper/migrations']);
|
|
},
|
|
]; |