M231129111337UpdateMenuName.php 589 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. namespace addons\QiJuhe\console\migrations;
  3. use yii\db\Migration;
  4. /**
  5. * Class M231129111337UpdateMenuName
  6. */
  7. class M231129111337UpdateMenuName extends Migration
  8. {
  9. /**
  10. * {@inheritdoc}
  11. */
  12. public function safeUp()
  13. {
  14. $sql = "UPDATE `qimall_menu` SET `title` = '选品中心' WHERE `addons_name` = 'QiJuhe' AND `url` = 'qi-juhe/storage/index'";
  15. $this->execute($sql);
  16. }
  17. /**
  18. * {@inheritdoc}
  19. */
  20. public function safeDown()
  21. {
  22. echo "M231129111337UpdateMenuName cannot be reverted.\n";
  23. return false;
  24. }
  25. }