create("votes", function (Blueprint $table) { $table->id(); $table->tinyInteger("points"); $table->text("comment")->nullable(); $table->foreignId("game_data_id")->constrained("game_data"); $table->timestamps(); });