database/migrations/2021_08_29_084041_create_syllabi_table.php
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateSyllabiTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('syllabi', function (Blueprint $table) {
$table->id();
$table->string('syllabus_name');
$table->string('syllabus_file_path');
$table->unsignedInteger('class_id');
$table->unsignedInteger('course_id');
$table->unsignedInteger('session_id');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('syllabi');
}
}