smallIncrements('id'); $table->dateTime('added')->nullable(); $table->unsignedMediumInteger('addedby')->default(0); $table->string('comment')->default(''); $table->bigInteger('first')->default(0); $table->bigInteger('last')->default(0); $table->index(['first', 'last'], 'first_last'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('bans'); } }