-
Notifications
You must be signed in to change notification settings - Fork 30
Clean unique index in framework #252
Copy link
Copy link
Open
Labels
Description
The Open Lowcode framework is NOT using unique indexes, as, depending on complex properties, unique fields may not be physically unique. The option "Unique" exists, though it is not used (code sample below).
The unique option should be cleaned ( code extract from package org.openlowcode.design.data )
public Index(String name, StoredElement simpleelement, boolean unique) {
super(name);
this.fields = new ArrayList<StoredElement>();
this.fields.add(simpleelement);
}
Reactions are currently unavailable