2019-11-23 15:01:59 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
|
|
|
|
|
|
class CreateOperationsTrucksTable extends Migration
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Run the migrations.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function up()
|
|
|
|
{
|
2020-08-17 11:43:37 +02:00
|
|
|
Schema::create('operations_vehicles', function (Blueprint $table) {
|
2019-11-23 15:01:59 +01:00
|
|
|
$table->increments('id');
|
2020-08-17 11:43:37 +02:00
|
|
|
$table->integer('operation_id')->unsigned();
|
|
|
|
$table->foreign('operation_id')->references('id')->on('operations')->onDelete('cascade');
|
|
|
|
$table->integer('vehicle_id')->unsigned();
|
|
|
|
$table->foreign('vehicle_id')->references('id')->on('vehicles');
|
|
|
|
$table->integer('driver_id')->unsigned();
|
|
|
|
$table->foreign('driver_id')->references('id')->on('users');
|
2019-11-23 15:01:59 +01:00
|
|
|
$table->timestamps();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reverse the migrations.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function down()
|
|
|
|
{
|
2020-08-17 11:43:37 +02:00
|
|
|
Schema::dropIfExists('operations_vehicles');
|
2019-11-23 15:01:59 +01:00
|
|
|
}
|
|
|
|
}
|