increments('id'); $table->integer('id'); $table->string('name'); }); Schema::create('powiaty', function (Blueprint $table) { $table->integer('id'); $table->integer('wojewodztwo_id'); $table->string('name'); }); Schema::create('gminy', function (Blueprint $table) { $table->integer('id'); $table->integer('wojewodztwo_id'); $table->integer('powiat_id'); $table->string('name'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('wojewodztwa'); Schema::dropIfExists('powiaty'); Schema::dropIfExists('gminy'); } }