Made login

This commit is contained in:
neerholt
2021-03-04 13:13:07 +01:00
parent c3479e8e7b
commit 9a38284c8b
6 changed files with 61 additions and 8 deletions
+1 -1
View File
@@ -6,7 +6,7 @@ use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
//Create password table with the rows as id, password, rememberToken and timestamps
Capsule::schema()->create("password", function (Blueprint $table){
Capsule::schema()->create("passwords", function (Blueprint $table){
$table->id();
$table->string('password');
$table->rememberToken();