| 12345678910111213141516171819202122232425262728293031 |
- <?php
- namespace app\migrations;
- use yii\db\Migration;
- /**
- * Class M240227084130InsertQimallCrontabTask
- */
- class M250310113330InsertQimallCrontabTask extends Migration
- {
- /**
- * {@inheritdoc}
- */
- public function safeUp()
- {
- $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);";
- $this->execute($sql);
- }
- /**
- * {@inheritdoc}
- */
- public function safeDown()
- {
- echo "M250310113330InsertQimallCrontabTask cannot be reverted.\n";
- return false;
- }
- }
|