Browse Source

fixed 缺失更新

兔姬桑 4 years ago
parent
commit
a52516196b
2 changed files with 2 additions and 2 deletions
  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');