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