M20240507155532AddSystemMenu.php 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?php
  2. namespace app\migrations;
  3. use yii\db\Migration;
  4. /**
  5. * Class M20240507155532AddSystemMenu
  6. */
  7. class M20240507155532AddSystemMenu extends Migration
  8. {
  9. /**
  10. * {@inheritdoc}
  11. */
  12. public function safeUp()
  13. {
  14. try {
  15. $sql = <<<SQL
  16. INSERT INTO `qimall_menu` (`id`, `title`, `app_id`, `cate_id`, `addons_name`, `is_addon`, `pid`, `url`, `icon`, `level`, `dev`, `sort`, `params`, `tree`, `status`, `created_at`, `updated_at`) VALUES (675519, '系统管理', 'backend', 1, '', 0, 0, '', 'el-icon-s-operation', 1, 0, 999, '[]', 'tr_0', 1, 1715069718, 1715069718);
  17. INSERT INTO `qimall_menu` (`id`, `title`, `app_id`, `cate_id`, `addons_name`, `is_addon`, `pid`, `url`, `icon`, `level`, `dev`, `sort`, `params`, `tree`, `status`, `created_at`, `updated_at`) VALUES (675520, '过期提醒', 'backend', 1, '', 0, 675519, '', '', 1, 0, 999, 'null', '', 1, 1715069718, 1715069718);
  18. SQL;
  19. $this->execute($sql);
  20. } catch (\Exception $e) {
  21. }
  22. }
  23. /**
  24. * {@inheritdoc}
  25. */
  26. public function safeDown()
  27. {
  28. echo "M20240507155532AddSystemMenu cannot be reverted.\n";
  29. return false;
  30. }
  31. }