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