bigIncrements('iid'); $table->string('bezeichnung'); $table->string('wann'); $table->string('wo'); $table->unsignedBigInteger('eid'); $table->unsignedBigInteger('cid'); $table->timestamps(); $table->foreign('eid')->references('eid')->on('events'); $table->foreign('cid')->references('cid')->on('containers'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('items'); } }