| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?php
- namespace addons\LuckyGroup\console\migrations;
- use yii\db\Migration;
- /**
- * Class M230815012625InsertQimallCrontabTask
- */
- class M230815012625InsertQimallCrontabTask extends Migration
- {
- /**
- * {@inheritdoc}
- */
- public function safeUp()
- {
- try {
- $sql="INSERT INTO `qimall_crontab_task` ( `name`, `command`, `type`, `rule`, `is_warning`, `status`, `created_at`, `updated_at`) VALUES ('幸运拼团订单自动取消', 'lucky-group/lucky-group-crontab/close', 2, '0 */5 * * * *', 0, 1, 1692062914, 1692062976);";
- $this->execute($sql);
- }catch (\Exception $e){
- }
- }
- /**
- * {@inheritdoc}
- */
- public function safeDown()
- {
- echo "M230815012625InsertQimallCrontabTask cannot be reverted.\n";
- return false;
- }
- /*
- // Use up()/down() to run migration code without a transaction.
- public function up()
- {
- }
- public function down()
- {
- echo "M230815012625InsertQimallCrontabTask cannot be reverted.\n";
- return false;
- }
- */
- }
|