M240925101144AddTownForDistrictId10219.php 969 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?php
  2. namespace app\migrations;
  3. use yii\db\Migration;
  4. /**
  5. * Class M240925101144AddTownForDistrictId10219
  6. */
  7. class M240925101144AddTownForDistrictId10219 extends Migration
  8. {
  9. /**
  10. * {@inheritdoc}
  11. */
  12. public function safeUp()
  13. {
  14. $sql = <<<SQL
  15. INSERT INTO `qimall_town` (`district_id`, `adcode`, `name`, `created_at`, `updated_at`) VALUES
  16. (10219, 430971, '南湾湖管理处', 1727230412, 1727230412),
  17. (10219, 430971, '千山红镇', 1727230412, 1727230412),
  18. (10219, 430971, '北洲子镇', 1727230412, 1727230412),
  19. (10219, 430971, '金盆镇', 1727230412, 1727230412),
  20. (10219, 430971, '河坝镇', 1727230412, 1727230412);
  21. SQL;
  22. $this->execute($sql);
  23. }
  24. /**
  25. * {@inheritdoc}
  26. */
  27. public function safeDown()
  28. {
  29. echo "M240925101144AddTownForDistrictId10219 cannot be reverted.\n";
  30. return false;
  31. }
  32. }