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 CreateOperationsMembersTable extends Migration
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Run the migrations.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function up()
|
|
|
|
{
|
|
|
|
Schema::create('operationsMembers', function (Blueprint $table) {
|
|
|
|
$table->increments('id');
|
|
|
|
$table->integer('operationID');
|
|
|
|
$table->integer('memberID');
|
2019-12-07 14:44:28 +01:00
|
|
|
$table->boolean('privateTransport');
|
2019-11-23 15:01:59 +01:00
|
|
|
$table->timestamps();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reverse the migrations.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function down()
|
|
|
|
{
|
|
|
|
Schema::dropIfExists('operationsMembers');
|
|
|
|
}
|
|
|
|
}
|