15 lines
428 B
PHP
15 lines
428 B
PHP
<?php
|
|
|
|
return [
|
|
app\common\events\PluginWasEnabled::class => function ($plugins) {
|
|
\Artisan::call('migrate',['--path'=>'plugins/use-staff/migrations','--force'=>true]);
|
|
},
|
|
app\common\events\PluginWasDisabled::class => function ($plugin) {
|
|
|
|
|
|
},
|
|
app\common\events\PluginWasDeleted::class => function () {
|
|
\Artisan::call('migrate:rollback',['--path'=>'plugins/use-staff/migrations']);
|
|
}
|
|
];
|