This commit is contained in:
2021-05-05 08:39:27 +02:00
parent 00f6020dbc
commit 4f2cb208fd
8 changed files with 32 additions and 19 deletions
+2 -1
View File
@@ -13,7 +13,8 @@ Capsule::schema()->create("game_jams", function (Blueprint $table) {
$table->dateTime("start_time");
$table->dateTime("end_time");
$table->string("key_word")->nullable();
$table->text("description")->nullable();
$table->text("description");
$table->boolean("is_finished")->default(false);
$table->timestamps();
});