Class AuditsMetaDataProvider

java.lang.Object
com.kingsrook.qqq.backend.core.model.audits.AuditsMetaDataProvider

public class AuditsMetaDataProvider extends Object
MetaData provider for the QQQ audit system tables. By default, the audit table's recordId field is INTEGER, which supports auditing tables with integer primary keys. To audit tables with String or UUID primary keys, configure the provider with a STRING recordId type:
 new AuditsMetaDataProvider()
    .withRecordIdType(QFieldType.STRING)
    .defineAll(qInstance, backendName, enricher);