UpgradeController.php 410 B

123456789101112131415161718192021
  1. <?php
  2. namespace console\controllers;
  3. use Yii;
  4. use yii\console\Controller;
  5. class UpgradeController extends Controller
  6. {
  7. public function actionInit()
  8. {
  9. //更新积分 shish 2019.11.22
  10. $sql = "ALTER TABLE xhUserAsset ADD growth INT NOT NULL DEFAULT 0 COMMENT '成长值' AFTER `point`;";
  11. $sql .= "UPDATE `xhUserAsset` SET `growth`=`integral`;";
  12. Yii::$app->db->createCommand($sql)->execute();
  13. }
  14. }