| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <?php
- namespace addons\Rebate\console\migrations;
- use yii\db\Migration;
- /**
- * Class M230411174226AlertQimalAddonsRebate
- */
- class M230411174226AlertQimalAddonsRebate extends Migration
- {
- /**
- * {@inheritdoc}
- */
- public function safeUp()
- {
- $sql = "ALTER TABLE `qimall_addons_rebate` ADD COLUMN `is_repeat` tinyint(2) NULL DEFAULT 0 COMMENT '阶梯奖励是否重复奖励[0=否,1=是]' AFTER `reward_info`;";
- $this->execute($sql);
- }
- /**
- * {@inheritdoc}
- */
- public function safeDown()
- {
- echo "M230411174226AlertQimalAddonsRebate cannot be reverted.\n";
- return false;
- }
- /*
- // Use up()/down() to run migration code without a transaction.
- public function up()
- {
- }
- public function down()
- {
- echo "M230411174226AlertQimalAddonsRebate cannot be reverted.\n";
- return false;
- }
- */
- }
|