id(); $table->string('dealer_code')->unique(); $table->string('name'); $table->text('address'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('dealers'); } }