| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <?php
- namespace addons\BusinessCard\console\migrations;
- use yii\db\Migration;
- /**
- * Class M230914065355BusinessCardTaskUpdateAuto
- */
- class M230914065355BusinessCardTaskUpdateAuto extends Migration
- {
- /**
- * {@inheritdoc}
- */
- public function safeUp()
- {
- $this->execute("UPDATE `qimall`.`qimall_crontab_task` SET `type`=2 WHERE `command`='business-card/goods-statistics/update-goods-statistics';");
- }
- /**
- * {@inheritdoc}
- */
- public function safeDown()
- {
- echo "M230914065355BusinessCardTaskUpdateAuto cannot be reverted.\n";
- return false;
- }
- /*
- // Use up()/down() to run migration code without a transaction.
- public function up()
- {
- }
- public function down()
- {
- echo "M230914065355BusinessCardTaskUpdateAuto cannot be reverted.\n";
- return false;
- }
- */
- }
|