create("game_data", function (Blueprint $table){ $table->id(); $table->string("gameLink"); $table->boolean("isWebBased"); $table->string("img"); $table->timestamps(); }); /* Syntex to create table in database $table->string("texts"); $table => valuable; string => datatype; ("texts") => name for the row in the database; */