| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <?php
- namespace addons\WechatVideoShop\console\migrations;
- use yii\db\Migration;
- /**
- * Class M230906021551WechatVideoShopGoodsSettingAddFieldIsEbable
- */
- class M230906021551WechatVideoShopGoodsSettingAddFieldIsEbable extends Migration
- {
- /**
- * {@inheritdoc}
- */
- public function safeUp()
- {
- $this->execute("ALTER TABLE `qimall_addons_wechat_video_shop_goods_setting` ADD COLUMN `is_enable` TINYINT UNSIGNED NULL DEFAULT '0' COMMENT '是否启用' AFTER `config`;");
- }
- /**
- * {@inheritdoc}
- */
- public function safeDown()
- {
- echo "M230906021551WechatVideoShopGoodsSettingAddFieldIsEbable cannot be reverted.\n";
- return false;
- }
- /*
- // Use up()/down() to run migration code without a transaction.
- public function up()
- {
- }
- public function down()
- {
- echo "M230906021551WechatVideoShopGoodsSettingAddFieldIsEbable cannot be reverted.\n";
- return false;
- }
- */
- }
|