Add migration for 'threads' column, fix errors on some admin pages, add validation rule for 'threads' column
This commit is contained in:
parent
85e3945cd7
commit
829f05a2c7
6 changed files with 44 additions and 4 deletions
|
@ -75,7 +75,13 @@
|
|||
</tr>
|
||||
<tr>
|
||||
<td>CPU Threads</td>
|
||||
<td><code>{{ $server->threads }}</code></td>
|
||||
<td>
|
||||
@if($server->threads != null)
|
||||
<code>{{ $server->threads }}</code>
|
||||
@else
|
||||
<code>Not Set</code>
|
||||
@endif
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Default Connection</td>
|
||||
|
|
Reference in a new issue