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 CreateOperationsTable extends Migration
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Run the migrations.5
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function up()
|
|
|
|
{
|
|
|
|
Schema::create('operations', function (Blueprint $table) {
|
|
|
|
$table->increments('id');
|
2020-08-17 11:43:37 +02:00
|
|
|
$table->integer('fire_station_id')->unsigned();
|
|
|
|
$table->foreign('fire_station_id')->references('id')->on('fire_stations')->onDelete('cascade');
|
|
|
|
$table->dateTime('operation_date');
|
|
|
|
$table->string('location');
|
|
|
|
$table->string('target');
|
|
|
|
$table->string('danger_type');
|
2020-02-01 01:03:57 +01:00
|
|
|
$table->longtext('description');
|
2020-08-17 11:43:37 +02:00
|
|
|
$table->integer('commander_id')->unsigned();
|
|
|
|
$table->foreign('commander_id')->references('id')->on('users');
|
|
|
|
$table->integer('editor_id')->nullable()->default(null);
|
2019-11-23 15:01:59 +01:00
|
|
|
$table->timestamps();
|
2020-08-17 11:43:37 +02:00
|
|
|
$table->softDeletes();
|
2019-11-23 15:01:59 +01:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reverse the migrations.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function down()
|
|
|
|
{
|
|
|
|
Schema::dropIfExists('operations');
|
|
|
|
}
|
|
|
|
}
|