1
0
forked from s421507/eOSP2
eOSP2/database/migrations/2019_12_11_214445_create_trainingsFirefighters_table.php
Krzysztof Strzelecki d7603c07fd Merge branch 'master' of https://git.wmi.amu.edu.pl/s421507/eOSP2
# Conflicts:
#	.idea/workspace.xml

Signed-off-by: Krzysztof Strzelecki <ks37365@st.amu.edu.pl>
2020-08-17 11:44:34 +02:00

40 lines
1.1 KiB
PHP

<?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()
{
Schema::create('trainings_firefighters', function (Blueprint $table) {
$table->increments('id');
$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');
$table->boolean('lifetime');
$table->integer('editor_id')->nullable()->default(null);
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('trainings_firefighters');
}
}