increments('id'); $table->timestamps(); $table->dateTime('beginn'); $table->string('name',200); $table->integer('gaeste')->unsigned(); $table->string('hinweise',2000); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('veranstaltungen'); } }