| 1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
- namespace addons\GroupBuy\console\migrations;
- use yii\db\Migration;
- /**
- * Class M202405071555UpdateCrontab
- */
- class M202405071555UpdateCrontab extends Migration
- {
- /**
- * {@inheritdoc}
- */
- public function safeUp()
- {
- try {
- $sql = "UPDATE `qimall_crontab_task`
- SET `rule` = '0 */30 * * * *'
- WHERE `command` = 'group-buy-order/auto-finish-active'";
- $this->execute($sql);
- } catch (\Exception $e) {
-
- }
-
- }
- /**
- * {@inheritdoc}
- */
- public function safeDown()
- {
- echo "M202405071555UpdateCrontab cannot be reverted.\n";
- return false;
- }
- }
|