img nullable

This commit is contained in:
RundelhausCode 2021-03-08 10:44:36 +01:00
parent 913fdae646
commit 858b065a8e
1 changed files with 1 additions and 1 deletions

View File

@ -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();
});