Ajoute la vérification de la passphrase avant affichage

This commit is contained in:
2022-02-25 15:35:49 +01:00
parent 1a41cd3fcb
commit c2b60b4b6a
15 changed files with 489 additions and 69 deletions

View File

@@ -0,0 +1,32 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('users', function (Blueprint $table) {
$table->string('checkword')->nullable(true);
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('users', function (Blueprint $table) {
$table->dropColumn('checkword');
});
}
};