Open-Lowcode icon indicating copy to clipboard operation
Open-Lowcode copied to clipboard

Clean unique index in framework

Open openlowcode opened this issue 3 years ago • 0 comments

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);
	}

openlowcode avatar Oct 24 '20 10:10 openlowcode