new db migration

This commit is contained in:
2021-03-05 11:23:10 +01:00
parent 01f6e16283
commit d2182f5020
10 changed files with 29 additions and 50 deletions
-2
View File
@@ -11,8 +11,6 @@ Capsule::schema()->create("groups", function (Blueprint $table){
$table->string("groupName");
$table->integer("groupAmount");
$table->foreignId("game_jam_id")->constrained("game_jams");
$table->integer("votes")->nullable();
$table->foreignId("password_id")->constrained("passwords");
$table->foreignId("game_data_id")->nullable()->constrained("game_data");
$table->timestamps();
});