6 lines
292 B
SQL
6 lines
292 B
SQL
INSERT INTO public.site_contents (key, value, type, section) VALUES
|
|
('social_instagram', 'https://instagram.com/', 'text', 'contact'),
|
|
('social_facebook', 'https://facebook.com/', 'text', 'contact'),
|
|
('social_twitter', 'https://twitter.com/', 'text', 'contact')
|
|
ON CONFLICT (key) DO NOTHING;
|