id(); $table->text('key'); $table->text('value'); $table->dateTime('expire'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists(config('otp.table_name','otps')); } }