Add placeholder lines for uniqueKey, recordSecurityLock, and auditRules

This commit is contained in:
2023-05-16 08:32:46 -05:00
parent 0e60811c43
commit caaf76c9a5

View File

@ -178,10 +178,12 @@ if(writeTableMetaData)
.withRecordLabelFields("TODO")
.withBackendName(TODO)
.withPrimaryKeyField("id")
.withUniqueKey(TODO)
.withRecordSecurityLock(TODO)
.withAuditRules(new QAuditRules().withAuditLevel(AuditLevel.TODO))
.withFieldsFromEntity({className}.class)
.withBackendDetails(new RDBMSTableBackendDetails()
.withTableName("{tableName}")
)
.withTableName("{tableName}"))
.withSection(new QFieldSection("identity", new QIcon().withName("badge"), Tier.T1, List.of("id")))
.withSection(new QFieldSection("data", new QIcon().withName("text_snippet"), Tier.T2, List.of({dataFieldNames})))
.withSection(new QFieldSection("dates", new QIcon().withName("calendar_month"), Tier.T3, List.of("createDate", "modifyDate")));