increments('id'); $table->unsignedInteger('account_id'); $table->unsignedInteger('user_id'); $table->string('recovery'); $table->boolean('used')->default(false); $table->timestamps(); $table->foreign('account_id')->references('id')->on('accounts')->onDelete('cascade'); $table->foreign('user_id')->references('id')->on('users')->onDelete('cascade'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('recovery_codes'); } }