create("game_jams", function (Blueprint $table){ $table->id(); $table->string("name"); $table->dateTime("startTime"); $table->dateTime("endTime"); $table->string("keyWord")->nullable(); $table->text("description")->nullable(); $table->timestamps(); }); /* Syntex to create table in database $table->string("texts"); $table => valuable; string => datatype; ("texts") => name for the row in the database; nullable => is allowed to not have a value in the database; */