Louis 19e5e7e047
#126 - Apply Data Seed using Hasura Migration (#140)
* fixes #126 - hasura auto apply data seed

* chore: update product's description and clean data migration down
2023-09-11 15:53:25 +07:00

9 lines
663 B
SQL

INSERT INTO public.prompts ("slug", "content", "image_url") VALUES
('conversational-ai-future', 'What are possible developments for AI technology in the next decade?', ''),
('conversational-managing-stress', 'What are some tips for managing stress?', ''),
('conversational-postapoc-robot', 'Let''s role play. You are a robot in a post-apocalyptic world.', ''),
('conversational-python-pytorch', 'What is the difference between Python and Pytorch?', ''),
('conversational-quadratic-equation', 'Can you explain how to solve a quadratic equation?', ''),
('conversational-roman-history', 'What is the history of the Roman Empire?', '')
ON CONFLICT (slug) DO NOTHING;