| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <?php
- namespace addons\GroupBuy\console\migrations;
- use yii\db\Migration;
- /**
- * Class M250814103530AlterGroupBuyOrderTable
- */
- class M250814103530AlterGroupBuyOrderTable extends Migration
- {
- /**
- * {@inheritdoc}
- */
- public function safeUp()
- {
- $sql = <<<SQL
- ALTER TABLE `qimall_addons_group_buy_order`
- ADD COLUMN `marketing` json NULL COMMENT '拼团营销优惠',
- ADD COLUMN `is_free` tinyint UNSIGNED NOT NULL DEFAULT 0 COMMENT '是否是开团免费订单';
- SQL;
- $this->execute($sql);
- }
- /**
- * {@inheritdoc}
- */
- public function safeDown()
- {
- return false;
- }
- /*
- // Use up()/down() to run migration code without a transaction.
- public function up()
- {
- }
- public function down()
- {
- echo "M250814103530AlterGroupBuyOrderTable cannot be reverted.\n";
- return false;
- }
- */
- }
|