mirror of
https://gitee.com/ulthon/ulthon_admin.git
synced 2026-07-01 15:32:48 +08:00
fix: 修复系统节点表错误
This commit is contained in:
@@ -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();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user