id(); $table->string('account', 256); $table->string('code', 16); $table->softDeletes(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('verify_codes'); } }