| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?php
- namespace app\migrations;
- use yii\db\Migration;
- /**
- *
- * Class M220928064924AlterQimallAddonsMarketingSettingToContentModify
- */
- class M220928064924AlterQimallAddonsMarketingSettingToContentModify extends Migration
- {
- /**
- * {@inheritdoc}
- */
- public function safeUp()
- {
- try {
- $sql = "ALTER TABLE qimall_addons_marketing_setting modify column content LONGTEXT";
- $this->execute($sql);
- } catch (\Exception $e) {
- }
- }
- /**
- * {@inheritdoc}
- */
- public function safeDown()
- {
- echo "M220928064924AlterQimallAddonsMarketingSettingToContentModify cannot be reverted.\n";
- return false;
- }
- /*
- // Use up()/down() to run migration code without a transaction.
- public function up()
- {
- }
- public function down()
- {
- echo "M220928064924AlterQimallAddonsMarketingSettingToContentModify cannot be reverted.\n";
- return false;
- }
- */
- }
|