increments('id'); $table->unsignedInteger('husband_id')->index(); $table->unsignedInteger('wife_id')->index(); $table->date('marriege_date')->nullable(); $table->date('divorce_date')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('couples'); } }