bigIncrements('id'); $table->string('name'); $table->string('street'); $table->string('city'); $table->string('voivodeship'); $table->string('latitude'); $table->string('longitude'); $table->string('concern'); $table->timestamps(); $table->engine = 'InnoDB'; }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('stores'); } }