* fix: [#35] - jan containers wont restart * chore: remove keycloak health check https://github.com/keycloak/keycloak/issues/17273 * fix: #53 hasura seeds should not yield error on conflict * fix: #59 hasura image generation action timeout * chore: jan web - fixes error logs of empty href url
6 lines
339 B
SQL
6 lines
339 B
SQL
SET check_function_bodies = false;
|
|
INSERT INTO public.collections ("slug", "name", "description") VALUES
|
|
('conversational', 'Conversational', 'Chatbot alternatives to ChatGPT. Converse with these models and get answers.'),
|
|
('text-to-image', 'Text to image', 'Converse with these models to generate images.')
|
|
ON CONFLICT (slug) DO NOTHING;
|