Make the statement work with postgres syntax while keeping the previous mariadb syntax (which seems to be used in create table only).
Why does ALTER TABLE "Role" ADD CONSTRAINT "pkRole" PRIMARY KEY ("roleId"); CST has ordered_columns while
ALTER TABLE table_name ADD CONSTRAINT constraint_name UNIQUE (col1, col2, col3); does not ?
Make the statement work with postgres syntax while keeping the previous mariadb syntax (which seems to be used in create table only).
Why does
ALTER TABLE "Role" ADD CONSTRAINT "pkRole" PRIMARY KEY ("roleId");
CST hasordered_columns
whileALTER TABLE table_name ADD CONSTRAINT constraint_name UNIQUE (col1, col2, col3);
does not ?