| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <?php
- namespace addons\Seed\console\migrations;
- use yii\db\Migration;
- /**
- * Class M220907031956InsterQimallCrontabTask
- */
- class M220907031956InsterQimallCrontabTask extends Migration
- {
- /**
- * {@inheritdoc}
- */
- public function safeUp()
- {
- $sql = "";
- $sql .= "INSERT INTO `qimall_crontab_task`(`name`, `command`, `type`, `rule`, `is_warning`, `status`, `created_at`, `updated_at`) VALUES ('种子金能量池释放', 'seed/release-crontab/exec', 2, '0 0 */1 * * *', 0, 1, 1660554371, 1660554371);";
- $this->execute($sql);
- return true;
- }
- /**
- * {@inheritdoc}
- */
- public function safeDown()
- {
- echo "M220907031956InsterQimallCrontabTask cannot be reverted.\n";
- return false;
- }
- /*
- // Use up()/down() to run migration code without a transaction.
- public function up()
- {
- }
- public function down()
- {
- echo "M220907031956InsterQimallCrontabTask cannot be reverted.\n";
- return false;
- }
- */
- }
|