Krzysztof Strzelecki
d7603c07fd
# Conflicts: # .idea/workspace.xml Signed-off-by: Krzysztof Strzelecki <ks37365@st.amu.edu.pl>
37 lines
960 B
PHP
37 lines
960 B
PHP
<?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('operations_members', function (Blueprint $table) {
|
|
$table->increments('id');
|
|
$table->integer('operation_id')->unsigned();
|
|
$table->foreign('operation_id')->references('id')->on('operations')->onDelete('cascade');
|
|
$table->integer('member_id')->unsigned();
|
|
$table->foreign('member_id')->references('id')->on('users');
|
|
$table->boolean('private_transport');
|
|
$table->timestamps();
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function down()
|
|
{
|
|
Schema::dropIfExists('operations_members');
|
|
}
|
|
}
|