Krzysztof Strzelecki
d7603c07fd
# Conflicts: # .idea/workspace.xml Signed-off-by: Krzysztof Strzelecki <ks37365@st.amu.edu.pl>
38 lines
1.0 KiB
PHP
38 lines
1.0 KiB
PHP
<?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()
|
|
{
|
|
Schema::create('operations_vehicles', function (Blueprint $table) {
|
|
$table->increments('id');
|
|
$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');
|
|
$table->timestamps();
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function down()
|
|
{
|
|
Schema::dropIfExists('operations_vehicles');
|
|
}
|
|
}
|