| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <?php
- namespace addons\Store\console\migrations;
- use yii\db\Migration;
- /**
- * Class M240902015348AlterQimallAddonsStore
- */
- class M240902015348AlterQimallAddonsStore extends Migration
- {
- /**
- * {@inheritdoc}
- */
- public function safeUp()
- {
- $sql="ALTER table qimall_addons_store add is_show_wechat_video_number tinyint(1) not null default 0 comment '是否显示微信视频号:0否;1是';
- ALTER table qimall_addons_store add wechat_video_number_id varchar(255) not null default '' comment '微信视频号id';
- ALTER table qimall_addons_store add is_show_coupon tinyint(1) not null default 1 comment '是否显示优惠券:0否;1是';";
- $this->execute($sql);
- }
- /**
- * {@inheritdoc}
- */
- public function safeDown()
- {
- echo "M240902015348AlterQimallAddonsStore cannot be reverted.\n";
- return false;
- }
- /*
- // Use up()/down() to run migration code without a transaction.
- public function up()
- {
- }
- public function down()
- {
- echo "M240902015348AlterQimallAddonsStore cannot be reverted.\n";
- return false;
- }
- */
- }
|