From 858b065a8e21e7746efcc50af5973bc8e1001a6b Mon Sep 17 00:00:00 2001 From: RundelhausCode Date: Mon, 8 Mar 2021 10:44:36 +0100 Subject: [PATCH] img nullable --- Backend/Database/GameData.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Backend/Database/GameData.php b/Backend/Database/GameData.php index 62062e3..3dfbb3d 100644 --- a/Backend/Database/GameData.php +++ b/Backend/Database/GameData.php @@ -10,7 +10,7 @@ Capsule::schema()->create("game_data", function (Blueprint $table){ $table->id(); $table->string("gameLink"); $table->boolean("isWebBased"); - $table->string("img"); + $table->string("img")->nullable(); $table->timestamps(); });