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
CREATE TABLE ocp_tools_config (
id integer Primary KEY DEFAULT nextval('ocp_tools_config_id_seq'),
module text NOT NULL UNIQUE,
param text NOT NULL UNIQUE,
value text DEFAULT NULL,
box_id text DEFAULT '' UNIQUE
);
will not allow the insertion of more than one row per module, or per param
in mysql, is the combination of module, param and box_id that must be unique
as it is now:
will not allow the insertion of more than one row per module, or per param
in mysql, is the combination of module, param and box_id that must be unique
The text was updated successfully, but these errors were encountered: