| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <?php
- namespace addons\ElectronCoupon\console\migrations;
- use yii\db\Migration;
- /**
- * Class M240218163819AddFieldToElectronCoupon
- */
- class M240218163819AddFieldToElectronCoupon extends Migration
- {
- /**
- * {@inheritdoc}
- */
- public function safeUp()
- {
- $sql = "ALTER TABLE `qimall_addons_electron_coupon_goods` ADD COLUMN `send_type` tinyint(1) NOT NULL COMMENT '赠送方式' AFTER `num`";
- $this->execute($sql);
- }
- /**
- * {@inheritdoc}
- */
- public function safeDown()
- {
- echo "M240218163819AddFieldToElectronCoupon cannot be reverted.\n";
- return false;
- }
- /*
- // Use up()/down() to run migration code without a transaction.
- public function up()
- {
- }
- public function down()
- {
- echo "M240218163819AddFieldToElectronCoupon cannot be reverted.\n";
- return false;
- }
- */
- }
|