forked from s421507/eOSP2
39 lines
908 B
PHP
39 lines
908 B
PHP
<?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->dateTime('operationDate');
|
|
$table->string('location', 100);
|
|
$table->string('target', 100);
|
|
$table->string('dangerType', 100);
|
|
$table->longtext('description');
|
|
$table->integer('commanderID');
|
|
$table->softDeletes();
|
|
$table->timestamps();
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function down()
|
|
{
|
|
Schema::dropIfExists('operations');
|
|
}
|
|
}
|