Made tabel timestamp

This commit is contained in:
neerholt
2021-03-03 14:04:46 +01:00
parent 8363126dad
commit 2e6671bf7b
7 changed files with 16 additions and 11 deletions
+2 -1
View File
@@ -4,8 +4,9 @@ use Illuminate\Database\Capsule\Manager as Capsule;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
Capsule::schema()->create("GameData", function (Blueprint $table){
Capsule::schema()->create("game_data", function (Blueprint $table){
$table->id();
$table->string("gameLink");
$table->boolean("isWebBased");
$table->timestamps();
});