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
When adding a schema into the installer's prefix option (like "rcwm.") initdb fails:
Creating database schema... ERROR: [7] ERROR: syntax error at or near "."
LINE 11: CONSTRAINT rcwm.users_username_key UNIQUE (username, mai...
^ (SQL Query: CREATE TABLE rcwm.users (
user_id integer DEFAULT nextval('rcwm.users_seq'::text) PRIMARY KEY,
username varchar(128) DEFAULT '' NOT NULL,
mail_host varchar(128) DEFAULT '' NOT NULL,
created timestamp with time zone DEFAULT now() NOT NULL,
last_login timestamp with time zone DEFAULT NULL,
failed_login timestamp with time zone DEFAULT NULL,
failed_login_counter integer DEFAULT NULL,
"language" varchar(5),
preferences text DEFAULT ''::text NOT NULL,
CONSTRAINT rcwm.users_username_key UNIQUE (username, mail_host)
))
[FAILED]
ERROR: [7] ERROR: syntax error at or near "."
LINE 11: CONSTRAINT rcwm.users_username_key UNIQUE (username, mai...
``` ^
The schema name is added to place where it's not supposed to be.
The text was updated successfully, but these errors were encountered:
Hello,
When adding a schema into the installer's prefix option (like "rcwm.") initdb fails:
The text was updated successfully, but these errors were encountered: