postgres column "X" does not exist
Use single quotes
for string constants
INSERT INTO config_change_log(last_config_version, is_done, change_description )
VALUES('5837-2016-08-24_09-12-22', false, '{ ''key'':''value''}');
Also you can escape single quotes
in data by doubling them
- SQL FIDDLE DEMO