| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?php
- namespace addons\Store\console\migrations;
- use yii\db\Migration;
- /**
- * Class M250724083850AlterQimallAddonsStoreGoodsExtra
- */
- class M250724083850AlterQimallAddonsStoreGoodsExtra extends Migration
- {
- /**
- * {@inheritdoc}
- */
- public function safeUp()
- {
- $sql = "ALTER TABLE `qimall_addons_store_goods_extra`
- ADD COLUMN `is_hidden_member_price` tinyint(1) NOT NULL DEFAULT 0 COMMENT '是否隐藏会员价(0:不隐藏,1:隐藏)';";
- $this->execute($sql);
- }
- /**
- * {@inheritdoc}
- */
- public function safeDown()
- {
- echo "M250724083850AlterQimallAddonsStoreGoodsExtra cannot be reverted.\n";
- return false;
- }
- /*
- // Use up()/down() to run migration code without a transaction.
- public function up()
- {
- }
- public function down()
- {
- echo "M250724083850AlterQimallAddonsStoreGoodsExtra cannot be reverted.\n";
- return false;
- }
- */
- }
|