Setup API (Hasura) console to version changes in code
This commit is contained in:
0
api/seeds/twenty/1675183813451_seed.sql
Normal file
0
api/seeds/twenty/1675183813451_seed.sql
Normal file
6
api/seeds/twenty/1675183931547_seed.sql
Normal file
6
api/seeds/twenty/1675183931547_seed.sql
Normal file
@ -0,0 +1,6 @@
|
||||
SET check_function_bodies = false;
|
||||
INSERT INTO public.users (id, email, created_at, updated_at, first_name, last_name, tenant_id) VALUES (1, 'charles@twenty.com', '2023-01-31 16:46:43.02666+00', '2023-01-31 16:46:43.02666+00', 'Charles', 'Bochet', 1);
|
||||
INSERT INTO public.users (id, email, created_at, updated_at, first_name, last_name, tenant_id) VALUES (2, 'charles@ouihelp.twenty.com', '2023-01-31 16:46:49.72368+00', '2023-01-31 16:46:49.72368+00', 'Charles', 'Bochet', 2);
|
||||
INSERT INTO public.users (id, email, created_at, updated_at, first_name, last_name, tenant_id) VALUES (3, 'felix@twenty.com', '2023-01-31 16:47:06.516066+00', '2023-01-31 16:47:06.516066+00', 'Félix', 'Malfait', 1);
|
||||
INSERT INTO public.users (id, email, created_at, updated_at, first_name, last_name, tenant_id) VALUES (4, 'felix@ouihelp.twenty.com', '2023-01-31 16:47:13.684386+00', '2023-01-31 16:47:13.684386+00', 'Félix', 'Malfait', 2);
|
||||
SELECT pg_catalog.setval('public.users_id_seq', 4, true);
|
||||
4
api/seeds/twenty/1675183944004_seed.sql
Normal file
4
api/seeds/twenty/1675183944004_seed.sql
Normal file
@ -0,0 +1,4 @@
|
||||
SET check_function_bodies = false;
|
||||
INSERT INTO public.tenants (id, name, uuid, email_domain) VALUES (1, 'pilot', '8375f69d-47bd-4baa-a3c1-f8aaef8d8b2b', 'twenty.com');
|
||||
INSERT INTO public.tenants (id, name, uuid, email_domain) VALUES (2, 'ouihelp', 'c71becee-2cd6-4b31-827e-6cbef4e66879', 'ouihelp.twenty.com');
|
||||
SELECT pg_catalog.setval('public.tenants_id_seq', 2, true);
|
||||
Reference in New Issue
Block a user