permissionSeed.stub 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | CatchAdmin [Just Like ~ ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2017~{$year} http://catchadmin.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( https://github.com/yanwenwu/catch-admin/blob/master/LICENSE.txt )
  8. // +----------------------------------------------------------------------
  9. // | Author: JaguarJack [ njphper@gmail.com ]
  10. // +----------------------------------------------------------------------
  11. use think\migration\Seeder;
  12. class {CLASS} extends Seeder
  13. {
  14. /**
  15. * Run Method.
  16. *
  17. * Write your database seeder using this method.
  18. *
  19. * More information on writing seeders is available here:
  20. * http://docs.phinx.org/en/latest/seeding.html
  21. */
  22. public function run()
  23. {
  24. \catcher\Utils::importTreeData($this->getPermissions(), 'permissions', 'parent_id');
  25. }
  26. protected function getPermissions()
  27. {
  28. {DATA}
  29. }
  30. }