jan/app-backend/hasura/seeds/jandb/1692710265351_collectionsSeed.sql
Louis 25a096da28
Resolves #35, resolves #59, resolves #53 (#60)
* 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
2023-09-05 22:00:01 +07:00

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;