| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <?php
- namespace app\migrations;
- use yii\db\Migration;
- /**
- * Class M240403161820AlterQimallMall
- */
- class M240403161820AlterQimallMall extends Migration
- {
- /**
- * {@inheritdoc}
- */
- public function safeUp()
- {
- try {
- $sql = "ALTER TABLE `qimall_mall`
- ADD COLUMN `is_compliance` TINYINT(1) NOT NULL DEFAULT '0' COMMENT '是否合规模式:1是;0否';";
- $this->execute($sql);
- } catch (\Exception $e) {
- }
- }
- /**
- * {@inheritdoc}
- */
- public function safeDown()
- {
- echo "M240403161820AlterQimallMall cannot be reverted.\n";
- return false;
- }
- /*
- // Use up()/down() to run migration code without a transaction.
- public function up()
- {
- }
- public function down()
- {
- echo "M240403161820AlterQimallMall cannot be reverted.\n";
- return false;
- }
- */
- }
|