callbacks.php 365 B

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