Oprava chyb v Logging.php, uprava tabuliek

- oprava tabuliek created_at, CURRENT_TIMESTAMP
- pridanie memory_total, load
- apcu fix
This commit is contained in:
2019-11-22 10:38:09 +01:00
parent 8caa7c227b
commit 72dbd62686
5 changed files with 28 additions and 25 deletions

View File

@@ -15,8 +15,8 @@ class CreateComputersTable extends Migration
{
Schema::create('computers', function (Blueprint $table) {
$table->increments('id');
$table->string('computer');
$table->timestamps();
$table->string('computer');
$table->timestamp('created_at')->default(DB::raw('CURRENT_TIMESTAMP'));
});
}