| 12345678910111213141516171819202122232425262728293031323334 |
- <?php
- namespace app\migrations;
- use yii\db\Migration;
- /**
- * Class M250310153612ModiFyColumnTypeToInt
- */
- class M250310153612ModiFyColumnTypeToInt extends Migration
- {
- /**
- * {@inheritdoc}
- */
- public function safeUp()
- {
- $sql = <<<SQL
- ALTER TABLE `qimall_download`
- MODIFY COLUMN `type` int(3) NOT NULL DEFAULT 0 COMMENT '数据类型';
- SQL;
- $this->execute($sql);
- }
- /**
- * {@inheritdoc}
- */
- public function safeDown()
- {
- echo "M250310153612ModiFyColumnTypeToInt cannot be reverted.\n";
- return false;
- }
- }
|