database And dertory update

This commit is contained in:
2021-03-08 13:01:01 +01:00
parent 858b065a8e
commit 4eb443cd1c
15 changed files with 59 additions and 13 deletions
+4 -2
View File
@@ -8,8 +8,10 @@ use Illuminate\Support\Facades\Schema;
//Create game_data table with the rows as id, gameLink, isWebBased and timestamp
Capsule::schema()->create("game_data", function (Blueprint $table){
$table->id();
$table->string("gameLink");
$table->boolean("isWebBased");
$table->string('game_name');
$table->string("game_link");
$table->boolean("is_web_based");
$table->text("description")->nullable();
$table->string("img")->nullable();
$table->timestamps();
});