Creating tables and columns with postgre always keeps lower case #9098
-
System information:
Connection specification:
Describe the problem you're observing:On creating tables and columns, even if I use Pascal Case, on save the names are converted to lower case. If I rename the table or the column the name keeps Pascal case. Steps to reproduce, if exist:Create new table with pascal case naming convention and save, you will see that the table and columns are persistent lower case. If you rename the table or columns the Pascal Case happens. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
thanks for the bug report |
Beta Was this translation helpful? Give feedback.
-
You should use quotes to set case-sensitive column names. Automatic name conversion was made to avoid typos and unwanted mixed case object creation (which may cause a lot of problems in real applications). |
Beta Was this translation helpful? Give feedback.
You should use quotes to set case-sensitive column names.
E.g. "SomeColumnName".
Automatic name conversion was made to avoid typos and unwanted mixed case object creation (which may cause a lot of problems in real applications).