| 12345678910111213141516171819202122232425262728293031323334 |
- <?php
- namespace app\migrations;
- use common\enums\RabbitMqEnum;
- use Yii;
- use yii\db\Migration;
- /**
- * Class M250812111623UpdateRegionOfQIYang
- */
- class M250812111623UpdateRegionOfQIYang extends Migration
- {
- /**
- * {@inheritdoc}
- */
- public function safeUp()
- {
- $sql = <<<SQL
- UPDATE `qimall_region` SET `name` = '祁阳市' WHERE `id` = 1904;
- SQL;
- $this->execute($sql);
- }
- /**
- * {@inheritdoc}
- */
- public function safeDown()
- {
- echo "M250812111623UpdateRegionOfQIYang cannot be reverted.\n";
- return false;
- }
- }
|