| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?php
- namespace addons\ShortVideo\console\migrations;
- use common\models\common\Addons;
- use yii\db\Migration;
- /**
- * Class M230807033123AlterQimallAddonsShortVideoComment
- */
- class M230807033123AlterQimallAddonsShortVideoComment extends Migration
- {
- /**
- * {@inheritdoc}
- */
- public function safeUp()
- {
- try {
- $sql="ALTER table qimall_addons_short_video_comment add `is_top` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否置顶0.否|1.是';";
- $this->execute($sql);
- }catch (\Exception $e){
- }
- }
- /**
- * {@inheritdoc}
- */
- public function safeDown()
- {
- echo "M230807033123AlterQimallAddonsShortVideoComment cannot be reverted.\n";
- return false;
- }
- /*
- // Use up()/down() to run migration code without a transaction.
- public function up()
- {
- }
- public function down()
- {
- echo "M230807033123AlterQimallAddonsShortVideoComment cannot be reverted.\n";
- return false;
- }
- */
- }
|