4 lines
170 B
SQL
4 lines
170 B
SQL
INSERT INTO public.site_contents (key, value, type, section)
|
|
VALUES ('contact_map_embed', '<iframe src="..."></iframe>', 'html', 'contact')
|
|
ON CONFLICT (key) DO NOTHING;
|