| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?php
- namespace addons\SecondaryCard\console\migrations;
- use yii\db\Migration;
- /**
- * Class M240625075222UpdateQimallAddonsSecondaryCardOrder
- */
- class M240625075222UpdateQimallAddonsSecondaryCardOrder extends Migration
- {
- /**
- * {@inheritdoc}
- */
- public function safeUp()
- {
- $this->execute("UPDATE qimall_addons_secondary_card_order set start_time = open_time where start_time = 0 and open_type = 2");
- }
- /**
- * {@inheritdoc}
- */
- public function safeDown()
- {
- echo "M240625075222UpdateQimallAddonsSecondaryCardOrder cannot be reverted.\n";
- return false;
- }
- /*
- // Use up()/down() to run migration code without a transaction.
- public function up()
- {
- }
- public function down()
- {
- echo "M240625075222UpdateQimallAddonsSecondaryCardOrder cannot be reverted.\n";
- return false;
- }
- */
- }
|