bigIncrements('id'); $table->string('phone_number'); $table->integer('verification_code'); $table->boolean('used')->default(false); $table->string('ip'); $table->dateTime('expired_at'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('otps'); } };