| 1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
- namespace app\migrations;
- use yii\db\Migration;
- /**
- * 删除 安徽省下面 寿县 下不属于它的乡镇
- * Class M250321114459DeleteQimallTown
- */
- class M250321114459DeleteQimallTown extends Migration
- {
- /**
- * {@inheritdoc}
- */
- public function safeUp()
- {
- try {
- $sql = <<<SQL
- delete from qimall_town where district_id = 1057 and adcode = 130126
- SQL;
- $this->execute($sql);
- } catch (\Exception $e) {
- }
- }
- /**
- * {@inheritdoc}
- */
- public function safeDown()
- {
- echo "M250321114459DeleteQimallTown cannot be reverted.\n";
- return false;
- }
- }
|