0
Fixed

Invalid SQL generated for comments in a schema

Corey Butler fa 9 anys updated by Jarosław Błąd (CEO) fa 9 anys 5
Comment generation partially works, but it fails to account for a schema in PostgreSQL code generation.

I've added comments to my tables and columns. The table has a schema specified. However the generated script does not reference the schema. For example:

This is the code that's generated:

COMMENT ON TABLE "employee" IS 'Represents an employee.';

This is the code that SHOULD be generated:

COMMENT ON TABLE "schema"."employee" IS 'Represents an employee.';


GOOD, I'M SATISFIED
Thanks!
Satisfaction mark by Corey Butler fa 9 anys