File: /home/imensosw/.trash/database.1/migrations/2020_12_08_113402_create_software_tools_table.php
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateSoftwareToolsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('software_tools', function (Blueprint $table) {
$table->bigIncrements('id');
$table->unsignedBigInteger('software_id')->index('software_id');
$table->string('tool', 100);
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('software_tools');
}
}