callbacks.php 438 B

12345678910111213141516
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: CSY
  5. * Date: 2019/10/18
  6. * Time: 10:01
  7. */
  8. return [
  9. app\common\events\PluginWasEnabled::class => function ($plugins) {
  10. \Artisan::call('migrate',['--path'=>'plugins/appletslive/migrations','--force'=>true]);
  11. },
  12. app\common\events\PluginWasDeleted::class => function ($plugins) {
  13. \Artisan::call('migrate:rollback',['--path'=>'plugins/appletslive/migrations']);
  14. }
  15. ];