id(); $table->timestamps(); $table->string("name"); $table->text("description")->nullable(true); $table->unsignedBigInteger('user_id'); }); Schema::table('todos', function (Blueprint $table) { $table->foreign('user_id')->references('id')->on('users'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('todos'); } }