2019-12-25 22:35:20 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
|
|
|
|
|
|
class CreateTrainingsFireFightersTable extends Migration
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Run the migrations.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function up()
|
|
|
|
{
|
2020-08-17 11:43:37 +02:00
|
|
|
Schema::create('trainings_firefighters', function (Blueprint $table) {
|
2019-12-25 22:35:20 +01:00
|
|
|
$table->increments('id');
|
2020-08-17 11:43:37 +02:00
|
|
|
$table->integer('user_id')->unsigned();
|
|
|
|
$table->foreign('user_id')->references('id')->on('users')->onDelete('cascade');
|
|
|
|
$table->integer('training_id')->unsigned();
|
|
|
|
$table->foreign('training_id')->references('id')->on('trainings')->onDelete('cascade');
|
|
|
|
$table->date('date_of_completion');
|
|
|
|
$table->date('date_of_expiry');
|
2019-12-25 22:35:20 +01:00
|
|
|
$table->boolean('lifetime');
|
2020-08-17 11:43:37 +02:00
|
|
|
$table->integer('editor_id')->nullable()->default(null);
|
2019-12-25 22:35:20 +01:00
|
|
|
$table->timestamps();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reverse the migrations.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function down()
|
|
|
|
{
|
2020-08-17 11:43:37 +02:00
|
|
|
Schema::dropIfExists('trainings_firefighters');
|
2019-12-25 22:35:20 +01:00
|
|
|
}
|
|
|
|
}
|