From ef1beaac3807d7538e28810ebb6d49468b3afea4 Mon Sep 17 00:00:00 2001 From: augushong Date: Thu, 9 Oct 2025 23:52:22 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E7=B3=BB=E7=BB=9F?= =?UTF-8?q?=E8=8A=82=E7=82=B9=E8=A1=A8=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- database/migrations/20250823224531_system_host.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/database/migrations/20250823224531_system_host.php b/database/migrations/20250823224531_system_host.php index 694d1d6..257eaeb 100644 --- a/database/migrations/20250823224531_system_host.php +++ b/database/migrations/20250823224531_system_host.php @@ -39,8 +39,8 @@ class SystemHost extends Migrator ->addColumn('memory_usage', 'biginteger', ['null' => '1', 'comment' => '内存占用(byte) {text}']) ->addColumn('disk_free', 'biginteger', ['null' => '1', 'comment' => '磁盘可用空间(byte) {text}']) ->addColumn('disk_total', 'biginteger', ['null' => '1', 'comment' => '磁盘总空间(byte) {text}']) - ->addColumn('create_time', 'int', ['null' => '1', 'signed' => '0', 'comment' => '首次运行时间 {date}']) - ->addColumn('update_time', 'int', ['null' => '1', 'signed' => '0', 'comment' => '更新时间 {date}']) + ->addColumn('create_time', 'integer', ['null' => '1', 'signed' => '0', 'comment' => '首次运行时间 {date}']) + ->addColumn('update_time', 'integer', ['null' => '1', 'signed' => '0', 'comment' => '更新时间 {date}']) ->addIndex('node_id', ['unique' => true]) ->create(); }