| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?php
- namespace app\migrations;
- use yii\db\Migration;
- /**
- * Class M230531060314AlterQimallGoodsExtra
- */
- class M230531060314AlterQimallGoodsExtra extends Migration
- {
- /**
- * {@inheritdoc}
- */
- public function safeUp()
- {
- try {
- $sql="alter table qimall_goods_extra add `is_level` tinyint(1) NOT NULL DEFAULT '1' COMMENT '是否享受会员功能 [0=否,1=是]';";
- $this->execute($sql);
- }catch (\Exception $e){
- }
- }
- /**
- * {@inheritdoc}
- */
- public function safeDown()
- {
- echo "M230531060314AlterQimallGoodsExtra cannot be reverted.\n";
- return false;
- }
- /*
- // Use up()/down() to run migration code without a transaction.
- public function up()
- {
- }
- public function down()
- {
- echo "M230531060314AlterQimallGoodsExtra cannot be reverted.\n";
- return false;
- }
- */
- }
|