JBPM issue with Maria DB Galera were Primary key mandatory. Some tables in JBPM db schema have no primary key.
- If I add a primary key column along with them what will be the impact?
- Is there nay other way I can get ride of this problem?
Currently we have Mariadb as the only database option to use.
create table EventTypes (
InstanceId bigint not null,
element varchar(255)
) ENGINE=InnoDB;
create table PeopleAssignments_PotOwners (
task_id bigint not null,
entity_id varchar(255) not null
) ENGINE=InnoDB;
Source for MariaDB primary Key mandatory: mariadb-galera-cluster-known-limitations
Please help.