bigIncrements('id'); $table->char('code', 8)->unique(); $table->string('title'); $table->unsignedBigInteger('dept_id'); $table->string('syllabus')->nullable(); $table->foreign('dept_id')->references('id')->on('departments'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('courses'); } }