M250310113330InsertQimallCrontabTask.php 717 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. namespace app\migrations;
  3. use yii\db\Migration;
  4. /**
  5. * Class M240227084130InsertQimallCrontabTask
  6. */
  7. class M250310113330InsertQimallCrontabTask extends Migration
  8. {
  9. /**
  10. * {@inheritdoc}
  11. */
  12. public function safeUp()
  13. {
  14. $sql = "INSERT INTO `qimall_crontab_task` (`name`, `command`, `type`, `rule`, `is_warning`, `status`, `created_at`, `updated_at`) VALUES ('商城资金每日统计', 'census-mall/capital-date', 2, '0 10 0 * * *', 0, 1, 1741577761, 1741577761);";
  15. $this->execute($sql);
  16. }
  17. /**
  18. * {@inheritdoc}
  19. */
  20. public function safeDown()
  21. {
  22. echo "M250310113330InsertQimallCrontabTask cannot be reverted.\n";
  23. return false;
  24. }
  25. }