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
@@ -9,7 +9,7 @@ use Illuminate\Support\Facades\Schema;
Capsule::schema()->create("key_words", function (Blueprint $table){
$table->id();
$table->string('keyWord');
$table->foreignId("fkGroup")->constrained("groups");
$table->foreignId("group_id")->constrained("groups");
$table->timestamps();
});