| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <?php
- namespace addons\Store\console\migrations;
- use yii\db\Migration;
- /**
- * Class M230823095546AlterAddonsStoreCommissionHigoReward
- */
- class M230823095546AlterAddonsStoreCommissionHigoReward extends Migration
- {
- /**
- * {@inheritdoc}
- */
- public function safeUp()
- {
- $sql = "ALTER TABLE `qimall_addons_store_commission`
- ADD COLUMN `higo_reward` decimal(12, 2) NOT NULL DEFAULT 0.00 COMMENT 'HiGo商家让利,商户嗨贝不足扣除等额到账金额';";
- $this->execute($sql);
- }
- /**
- * {@inheritdoc}
- */
- public function safeDown()
- {
- echo "M230823095546AlterAddonsStoreCommissionHigoReward cannot be reverted.\n";
- return false;
- }
- /*
- // Use up()/down() to run migration code without a transaction.
- public function up()
- {
- }
- public function down()
- {
- echo "M230823095546AlterAddonsStoreCommissionHigoReward cannot be reverted.\n";
- return false;
- }
- */
- }
|