- oprava tabuliek created_at, CURRENT_TIMESTAMP - pridanie memory_total, load - apcu fix
33 lines
688 B
PHP
33 lines
688 B
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Schema;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Database\Migrations\Migration;
|
|
|
|
class CreateComputersTable extends Migration
|
|
{
|
|
/**
|
|
* Run the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function up()
|
|
{
|
|
Schema::create('computers', function (Blueprint $table) {
|
|
$table->increments('id');
|
|
$table->string('computer');
|
|
$table->timestamp('created_at')->default(DB::raw('CURRENT_TIMESTAMP'));
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function down()
|
|
{
|
|
Schema::dropIfExists('computers');
|
|
}
|
|
}
|