for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateEventOrganizerTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
Schema::create('event_organizer', function (Blueprint $table) {
$table->id();
$table->foreignId('event_id')->constrained()->onDelete('cascade'); //When delete event delete all the relations in this table relations
$table->foreignId('organizer_id')->constrained();
$table->timestamps();
});
}
* Reverse the migrations.
public function down()
Schema::dropIfExists('event_organizer');