increments('id'); $table->integer('user_id')->index(); $table->string('method', 20)->index(); $table->text('value'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('mfa_values'); } }