소스 검색

fixed 缺失更新

兔姬桑 4 년 전
부모
커밋
a52516196b
2개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 1
      app/Models/NodeOnlineLog.php
  2. 1 1
      app/Models/NodePing.php

+ 1 - 1
app/Models/NodeOnlineLog.php

@@ -23,5 +23,5 @@ use Illuminate\Database\Eloquent\Model;
  */
 class NodeOnlineLog extends Model {
 	public $timestamps = false;
-	protected $table = 'node_ping';
+	protected $table = 'ss_node_online_log';
 }

+ 1 - 1
app/Models/NodePing.php

@@ -31,7 +31,7 @@ use Illuminate\Database\Eloquent\Relations\HasOne;
  */
 class NodePing extends Model {
 	const UPDATED_AT = null;
-	protected $table = 'ss_node_ping';
+	protected $table = 'node_ping';
 
 	public function node(): HasOne {
 		return $this->hasOne(Node::class, 'id', 'node_id');