Files
salt-minv-graph/database/migrations/2019_11_07_000001_create_computers_table.php
Jaroslav Drzik 72dbd62686 Oprava chyb v Logging.php, uprava tabuliek
- oprava tabuliek created_at, CURRENT_TIMESTAMP
- pridanie memory_total, load
- apcu fix
2019-11-22 10:38:09 +01:00

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');
}
}