You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
ALTER TABLE public.enemies ALTER COLUMN archetype SET NOT NULL;
|
|
|
|
CREATE UNIQUE INDEX IF NOT EXISTS enemies_type_key ON public.enemies (type);
|
|
|
|
SELECT setval('public.enemies_id_seq', (SELECT COALESCE(MAX(id), 1) FROM public.enemies));
|