How can I get .conf file for the site version?
Problem is that I can't achieve splitting Insert VALUES in local version with any combination of parameters, but it looks cool in web version.
Input:
INSERT INTO cashback_categories (name)
VALUES ('string one'), ('string two'), ('string three')
ON CONFLICT (name)
DO NOTHING;
Desired Output:
INSERT INTO cashback_categories (name)
VALUES
('string one'),
('string two'),
('string three')
ON CONFLICT (name)
DO NOTHING;

How can I get .conf file for the site version?
Problem is that I can't achieve splitting Insert VALUES in local version with any combination of parameters, but it looks cool in web version.
Input:
INSERT INTO cashback_categories (name)
VALUES ('string one'), ('string two'), ('string three')
ON CONFLICT (name)
DO NOTHING;
Desired Output:
INSERT INTO cashback_categories (name)
VALUES
('string one'),
('string two'),
('string three')
ON CONFLICT (name)
DO NOTHING;