11 lines
370 B
PHP
11 lines
370 B
PHP
<?php
|
|
|
|
return [
|
|
app\common\events\PluginWasEnabled::class => function ($plugins) {
|
|
\Artisan::call('migrate',['--path'=>'plugins/new-member-prize/migrations','--force'=>true]);
|
|
},
|
|
app\common\events\PluginWasDeleted::class => function ($plugins) {
|
|
\Artisan::call('migrate:rollback',['--path'=>'plugins/new-member-prize/migrations']);
|
|
},
|
|
];
|