|
@@ -0,0 +1,38 @@
|
|
|
+<?php
|
|
|
+
|
|
|
+use Illuminate\Support\Facades\Schema;
|
|
|
+use Illuminate\Database\Schema\Blueprint;
|
|
|
+use Illuminate\Database\Migrations\Migration;
|
|
|
+
|
|
|
+class Add2faToUsersTable extends Migration
|
|
|
+{
|
|
|
+ /**
|
|
|
+ * Run the migrations.
|
|
|
+ *
|
|
|
+ * @return void
|
|
|
+ */
|
|
|
+ public function up()
|
|
|
+ {
|
|
|
+ Schema::table('users', function (Blueprint $table) {
|
|
|
+ $table->boolean('2fa_enabled')->default(false);
|
|
|
+ $table->string('2fa_secret')->nullable();
|
|
|
+ $table->json('2fa_backup_codes')->nullable();
|
|
|
+ $table->timestamp('2fa_setup_at')->nullable();
|
|
|
+ });
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * Reverse the migrations.
|
|
|
+ *
|
|
|
+ * @return void
|
|
|
+ */
|
|
|
+ public function down()
|
|
|
+ {
|
|
|
+ Schema::table('users', function (Blueprint $table) {
|
|
|
+ $table->dropColumn('2fa_enabled');
|
|
|
+ $table->dropColumn('2fa_secret');
|
|
|
+ $table->dropColumn('2fa_backup_codes');
|
|
|
+ $table->dropColumn('2fa_setup_at');
|
|
|
+ });
|
|
|
+ }
|
|
|
+}
|