Made login
This commit is contained in:
@@ -10,10 +10,10 @@ Capsule::schema()->create("groups", function (Blueprint $table){
|
||||
$table->id();
|
||||
$table->string("groupName");
|
||||
$table->integer("groupAmount");
|
||||
$table->foreignId("fkGameJam")->constrained("game_jams");
|
||||
$table->foreignId("game_jam_id")->constrained("game_jams");
|
||||
$table->integer("votes")->nullable();
|
||||
$table->foreignId("fkPassword")->constrained("password");
|
||||
$table->foreignId("fkGameData")->nullable()->constrained("game_data");
|
||||
$table->foreignId("password_id")->constrained("passwords");
|
||||
$table->foreignId("game_data_id")->nullable()->constrained("game_data");
|
||||
$table->timestamps();
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user