M240913165532DelRegionId3271.php 486 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. namespace app\migrations;
  3. use yii\db\Migration;
  4. /**
  5. * 删除 山东省 潍坊市 高新区
  6. */
  7. class M240913165532DelRegionId3271 extends Migration
  8. {
  9. /**
  10. * {@inheritdoc}
  11. */
  12. public function safeUp()
  13. {
  14. $sql = <<<SQL
  15. DELETE FROM qimall_region WHERE id = 3271 and name = '高新区';
  16. SQL;
  17. $this->execute($sql);
  18. }
  19. /**
  20. * {@inheritdoc}
  21. */
  22. public function safeDown()
  23. {
  24. return false;
  25. }
  26. }