| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?php
- namespace addons\Store\console\migrations;
- use yii\db\Migration;
- /**
- * Class M230808083924AlterTableAddonsStoreSettings
- */
- class M230808083924AlterTableAddonsStoreSettings extends Migration
- {
- /**
- * {@inheritdoc}
- */
- public function safeUp()
- {
- $sql = "ALTER TABLE `qimall_addons_store_settings`
- ADD COLUMN `cashier_goods_complete_direct` tinyint(1) NOT NULL DEFAULT 0 COMMENT '收银页购买商品,订单是否直接完成[1是,0否]';";
- $this->execute($sql);
- }
- /**
- * {@inheritdoc}
- */
- public function safeDown()
- {
- echo "M230808083924AlterTableAddonsStoreSettings cannot be reverted.\n";
- return false;
- }
- /*
- // Use up()/down() to run migration code without a transaction.
- public function up()
- {
- }
- public function down()
- {
- echo "M230808083924AlterTableAddonsStoreSettings cannot be reverted.\n";
- return false;
- }
- */
- }
|