config.php 849 B

123456789101112131415161718
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | TopThink [ WE CAN DO IT JUST THINK IT ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2015 http://www.topthink.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Author: zhangyajun <448901948@qq.com>
  8. // +----------------------------------------------------------------------
  9. \think\Console::addDefaultCommands([
  10. "think\\migration\\command\\migrate\\Create",
  11. "think\\migration\\command\\migrate\\Run",
  12. "think\\migration\\command\\migrate\\Rollback",
  13. "think\\migration\\command\\migrate\\Breakpoint",
  14. "think\\migration\\command\\migrate\\Status",
  15. "think\\migration\\command\\seed\\Create",
  16. "think\\migration\\command\\seed\\Run",
  17. ]);