vali 6 년 전
부모
커밋
16c89f4e16
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      app/Logic/UnSettmatchLogic.php

+ 1 - 1
app/Logic/UnSettmatchLogic.php

@@ -234,7 +234,7 @@ class UnSettmatchLogic
     public function changeStatus($game_code, $match_id)
     {
         $table = 'st_' . $game_code . '_result';
-        $ret = DB::name($table)->where('match_id', $match_id)->update(['status' => 4]);
+        $ret = DB::table($table)->where('match_id', $match_id)->update(['status' => 4]);
         return $ret;
     }