callbacks.php 385 B

1234567891011
  1. <?php
  2. return [
  3. app\common\events\PluginWasEnabled::class => function ($plugins) {
  4. \Artisan::call('migrate',['--path'=>'plugins/goods-assistant/migrations','--force'=>true]);
  5. },
  6. app\common\events\PluginWasDeleted::class => function ($plugins) {
  7. \Artisan::call('migrate:rollback',['--path'=>'plugins/goods-assistant/migrations','--force'=>true]);
  8. },
  9. ];