Fix long column descriptions being truncated at 63 characters in pg12 (#1368)

* Lengthen child_entities name comment to make tests check it does not get truncated at 63 chars.

* Don't cast column description to sql_identifier type (maxlen 63 chars) when introspecting schema in DbStructure.hs
This commit is contained in:
Amédée d'Aboville
2019-08-02 16:13:01 +00:00
committed by Steve Chávez
parent 53b606e1c1
commit ee40e7e0d7
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1226,7 +1226,7 @@ create table ranges (
comment on table child_entities is 'child_entities comment';
comment on column child_entities.id is 'child_entities id comment';
comment on column child_entities.name is 'child_entities name comment';
comment on column child_entities.name is 'child_entities name comment. Can be longer than sixty-three characters long';
comment on table grandchild_entities is
$$grandchild_entities summary