eOSP2/database/migrations/2019_11_12_235707_create_op...

39 lines
912 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->string('description');
$table->integer('commanderID');
$table->integer('driverID');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('operations');
}
}