Currently tables names such as Project, Location, LonLatHeight are PascalCase. This was inspired by SQLModel.
However, it is important to note that PostgreSQL treats unquoted identifiers as case-insensitive by folding them to lowercase, which can lead to confusion if case-sensitive naming is used without proper quoting. Therefore, many developers prefer snake_case for broader compatibility and to prevent potential issues with case sensitivity across different database systems. See also: https://stackoverflow.com/questions/2878248/postgresql-naming-conventions