| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?php
- namespace addons\Store\console\migrations;
- use yii\db\Migration;
- /**
- * Class M240907092441AlterQimallAddonsStore
- */
- class M240907092441AlterQimallAddonsStore extends Migration
- {
- /**
- * {@inheritdoc}
- */
- public function safeUp()
- {
- $sql = "ALTER table qimall_addons_store add `default_store_cate_style` tinyint(1) NOT NULL DEFAULT '1' COMMENT '门店分类样式 1:样式1;2:样式2';";
- $this->execute($sql);
- }
- /**
- * {@inheritdoc}
- */
- public function safeDown()
- {
- echo "M240907092441AlterQimallAddonsStore cannot be reverted.\n";
- return false;
- }
- /*
- // Use up()/down() to run migration code without a transaction.
- public function up()
- {
- }
- public function down()
- {
- echo "M240907092441AlterQimallAddonsStore cannot be reverted.\n";
- return false;
- }
- */
- }
|