You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Creating Postgres 'feasibility-thredded_dev' user.
ERROR: syntax error at or near "-"
LINE 1: CREATE ROLE feasibility-thredded_dev LOGIN PASSWORD 'feasibi...
^
ERROR: syntax error at or near "-"
LINE 1: ALTER ROLE feasibility-thredded_dev CREATEDB;
I named the app feasibility-thredded, which in turn tried to create Postgres user feasibility-thredded_dev, however because of the hyphen - , there is a syntax error.
This one is pretty simple, but poses a problem:
I named the app
feasibility-thredded
, which in turn tried to create Postgres userfeasibility-thredded_dev
, however because of the hyphen-
, there is a syntax error.According to this PG message board topic, it simply needs to be wrapped in double quotes.
Changing L23/24 in create_database_user.sh from:
to
solves the problem.
The text was updated successfully, but these errors were encountered: