5
Formalizing what we worked out in the comments as an answer, when you give postgres an unquoted string as an identifier, it forces it to lower-case. see this similar answer from pgsql-general mailing list. So the actual name of the database created by the command CREATE DATABASE jobzumoDB;
is jobzumodb
. to create a database named jobzumoDB
it’s necessary to use quotes, as in CREATE DATABASE "jobzumoDB";
- [Django]-How to make a geography field unique?
- [Django]-Update M2M relationship django rest framework (many=true)
- [Django]-How to pass a parameter to a view with HTMX and Django?
- [Django]-How to format a number with specific number of digits?
- [Django]-Ckeditor_uploader Dynamic Image Upload Path
Source:stackexchange.com