callbacks.php 486 B

123456789101112131415
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * Author: 芸众商城 www.yunzshop.com
  5. * Date: 2017/5/9
  6. * Time: 上午11:52
  7. */
  8. return [
  9. app\common\events\PluginWasEnabled::class => function ($plugins) {
  10. \Artisan::call('migrate',['--path'=>'plugins/merchant/migrations','--force'=>true]);
  11. },
  12. app\common\events\PluginWasDeleted::class => function ($plugins) {
  13. \Artisan::call('migrate',['down'=>true, '--path'=>'plugins/merchant/migrations','--force'=>true]);
  14. },
  15. ];