id(); $table->string('name'); $table->unsignedBigInteger('users_id')->nullable(); $table->foreign('users_id')->references('id')->on('users'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('tasks'); } }