CREATE TABLE gps_families (
	family	text,	-- A label for the family, eg D for dihedral or A for alternating
	id	bigint,	-- 
	input	text,	-- a regular expression for users to find this family, for example ^D(?P<n>\d+)$
	knowl	text,	-- Knowl for this family or special group
	magma_cmd	text,	-- The Magma command for computing this group, as a formattable string, for example CyclicGroup({n})
	name	text,	-- description of family, for example Alternating
	priority	smallint,	-- Which position this alias should appear in the list of aliases for the group
	tex_name	text 	-- A latex description, as a formattable string, for example C_{{{n}}}
);