eOSP2/database/migrations/2019_11_12_235707_create_operations_table.php

43 lines
1.2 KiB
PHP
Raw Permalink Normal View History

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');
$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');
$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();
$table->softDeletes();
2019-11-23 15:01:59 +01:00
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('operations');
}
}