| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <?php
- namespace app\migrations;
- use yii\db\Migration;
- /**
- * Class M230211164551InsertQimallTown
- */
- class M230211164551InsertQimallTown extends Migration
- {
- /**
- * {@inheritdoc}
- */
- public function safeUp()
- {
- try {
- $sql = "INSERT INTO `qimall_town`(`district_id`, `adcode`, `name`, `created_at`, `updated_at`) VALUES ";
- $sql .= "(833, 320106, '东环街道', 1594556471, 1594556471),";
- $sql .= "(833, 320106, '金山桥街道', 1594556471, 1594556471);";
- $this->execute($sql);
- } catch (\Exception $e) {
- }
- }
- /**
- * {@inheritdoc}
- */
- public function safeDown()
- {
- echo "M230211164551InsertQimallTown cannot be reverted.\n";
- return false;
- }
- /*
- // Use up()/down() to run migration code without a transaction.
- public function up()
- {
- }
- public function down()
- {
- echo "M230210095051UpdateQimallTown cannot be reverted.\n";
- return false;
- }
- */
- }
|