| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?php
- namespace app\migrations;
- use yii\db\Migration;
- /**
- * Class M250211063223AlterQimallAiTool
- */
- class M250211063223AlterQimallAiTool extends Migration
- {
- /**
- * {@inheritdoc}
- */
- public function safeUp()
- {
- $this->execute("ALTER TABLE qimall_ai_tool add sort int(11) not null default 1 COMMENT '排序值';");
- $this->execute("INSERT INTO `qimall_ai_tool` (`title`, `url`, `cover`, `is_docking`, `brief_introduction`, `status`, `created_at`, `updated_at`, `sort`) VALUES ( 'deepseek', 'https://chat.deepseek.com', '/static/addons/icon/aiTool/deepseek.png', 0, 'deepseek探索未至之境', 1, 0, 0, 0);");
- }
- /**
- * {@inheritdoc}
- */
- public function safeDown()
- {
- echo "M250211063223AlterQimallAiTool cannot be reverted.\n";
- return false;
- }
- /*
- // Use up()/down() to run migration code without a transaction.
- public function up()
- {
- }
- public function down()
- {
- echo "M250211063223AlterQimallAiTool cannot be reverted.\n";
- return false;
- }
- */
- }
|