| 1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- namespace addons\SmartForm\console\migrations;
- use yii\db\Migration;
- /**
- * Class M250222153365AlterSmartFormTemplateColumn
- * 更新option 字段类型
- */
- class M250222153365AlterSmartFormTemplateColumn extends Migration
- {
- /**
- * {@inheritdoc}
- */
- public function safeUp()
- {
- $sql = <<<SQL
- ALTER TABLE `qimall_addons_smart_form_template_column`
- MODIFY COLUMN `option` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL COMMENT '选项' AFTER `limit`;
- SQL;
- $this->execute($sql);
- }
- /**
- * {@inheritdoc}
- */
- public function safeDown()
- {
- return false;
- }
- }
|