for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateFinderComputersRemetentesTables extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
Schema::create(
'computers', function (Blueprint $table) {
$table->increments('id');
$table->string('name');
$table->string('location');
$table->nullableTimestamps();
$table->softDeletes();
}
);
* Reverse the migrations.
public function down()
Schema::dropIfExists('computers');