| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <?php
- namespace app\migrations;
- use yii\db\Migration;
- /**
- * Class M240528084450AlterQimallOrderDetail
- */
- class M240528084450AlterQimallOrderDetail extends Migration
- {
- /**
- * {@inheritdoc}
- */
- public function safeUp()
- {
- $this->execute("ALTER TABLE qimall_order_detail add `order_source` varchar(255) DEFAULT '' COMMENT '订单来源:juhe_shop=>聚合供应链';");
- }
- /**
- * {@inheritdoc}
- */
- public function safeDown()
- {
- echo "M240528084450AlterQimallOrderDetail cannot be reverted.\n";
- return false;
- }
- /*
- // Use up()/down() to run migration code without a transaction.
- public function up()
- {
- }
- public function down()
- {
- echo "M240528084450AlterQimallOrderDetail cannot be reverted.\n";
- return false;
- }
- */
- }
|