fix: 修复系统节点表错误

This commit is contained in:
augushong
2025-10-09 23:52:22 +08:00
parent 9d403d1e41
commit ef1beaac38

View File

@@ -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();
}