001package com.echothree.model.jooq.server.keys.forum; 002 003import com.echothree.model.jooq.server.records.forum.ForumBlobMessageParts; 004import com.echothree.model.jooq.server.records.forum.ForumClobMessageParts; 005import com.echothree.model.jooq.server.records.forum.ForumDescriptions; 006import com.echothree.model.jooq.server.records.forum.ForumDetails; 007import com.echothree.model.jooq.server.records.forum.ForumForumThreads; 008import com.echothree.model.jooq.server.records.forum.ForumGroupDescriptions; 009import com.echothree.model.jooq.server.records.forum.ForumGroupDetails; 010import com.echothree.model.jooq.server.records.forum.ForumGroupForums; 011import com.echothree.model.jooq.server.records.forum.ForumGroups; 012import com.echothree.model.jooq.server.records.forum.ForumMessageAttachmentDescriptions; 013import com.echothree.model.jooq.server.records.forum.ForumMessageAttachmentDetails; 014import com.echothree.model.jooq.server.records.forum.ForumMessageAttachments; 015import com.echothree.model.jooq.server.records.forum.ForumMessageBlobAttachments; 016import com.echothree.model.jooq.server.records.forum.ForumMessageClobAttachments; 017import com.echothree.model.jooq.server.records.forum.ForumMessageDetails; 018import com.echothree.model.jooq.server.records.forum.ForumMessagePartDetails; 019import com.echothree.model.jooq.server.records.forum.ForumMessagePartTypeDescriptions; 020import com.echothree.model.jooq.server.records.forum.ForumMessagePartTypes; 021import com.echothree.model.jooq.server.records.forum.ForumMessageParts; 022import com.echothree.model.jooq.server.records.forum.ForumMessageRoles; 023import com.echothree.model.jooq.server.records.forum.ForumMessageStatuses; 024import com.echothree.model.jooq.server.records.forum.ForumMessageTypeDescriptions; 025import com.echothree.model.jooq.server.records.forum.ForumMessageTypePartTypes; 026import com.echothree.model.jooq.server.records.forum.ForumMessageTypes; 027import com.echothree.model.jooq.server.records.forum.ForumMessages; 028import com.echothree.model.jooq.server.records.forum.ForumMimeTypes; 029import com.echothree.model.jooq.server.records.forum.ForumPartyRoles; 030import com.echothree.model.jooq.server.records.forum.ForumPartyTypeRoles; 031import com.echothree.model.jooq.server.records.forum.ForumRoleTypeDescriptions; 032import com.echothree.model.jooq.server.records.forum.ForumRoleTypes; 033import com.echothree.model.jooq.server.records.forum.ForumStringMessageParts; 034import com.echothree.model.jooq.server.records.forum.ForumThreadDetails; 035import com.echothree.model.jooq.server.records.forum.ForumThreads; 036import com.echothree.model.jooq.server.records.forum.ForumTypeDescriptions; 037import com.echothree.model.jooq.server.records.forum.ForumTypeMessageTypes; 038import com.echothree.model.jooq.server.records.forum.ForumTypes; 039import com.echothree.model.jooq.server.records.forum.Forums; 040 041import org.jooq.TableField; 042import org.jooq.UniqueKey; 043import org.jooq.impl.DSL; 044import org.jooq.impl.Internal; 045 046/** 047 * Key definitions for the ForumUnique component. 048 */ 049public interface ForumUniqueKeys { 050 public static final UniqueKey<ForumBlobMessageParts> FORUM_BLOB_MESSAGE_PARTS_FORUM_MESSAGE_PART_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumBlobMessageParts.ForumBlobMessageParts, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumBlobMessageParts.ForumBlobMessageParts.FORUM_MESSAGE_PART, com.echothree.model.jooq.server.tables.forum.ForumBlobMessageParts.ForumBlobMessageParts.THRU_TIME }, true); 051 public static final UniqueKey<ForumBlobMessageParts> FORUM_BLOB_MESSAGE_PARTS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumBlobMessageParts.ForumBlobMessageParts, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumBlobMessageParts.ForumBlobMessageParts.FORUM_BLOB_MESSAGE_PART }, true); 052 public static final UniqueKey<ForumClobMessageParts> FORUM_CLOB_MESSAGE_PARTS_FORUM_MESSAGE_PART_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumClobMessageParts.ForumClobMessageParts, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumClobMessageParts.ForumClobMessageParts.FORUM_MESSAGE_PART, com.echothree.model.jooq.server.tables.forum.ForumClobMessageParts.ForumClobMessageParts.THRU_TIME }, true); 053 public static final UniqueKey<ForumClobMessageParts> FORUM_CLOB_MESSAGE_PARTS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumClobMessageParts.ForumClobMessageParts, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumClobMessageParts.ForumClobMessageParts.FORUM_CLOB_MESSAGE_PART }, true); 054 public static final UniqueKey<ForumDescriptions> FORUM_DESCRIPTIONS_FORUM_AND_LANGUAGE_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumDescriptions.ForumDescriptions, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumDescriptions.ForumDescriptions.FORUM, com.echothree.model.jooq.server.tables.forum.ForumDescriptions.ForumDescriptions.LANGUAGE, com.echothree.model.jooq.server.tables.forum.ForumDescriptions.ForumDescriptions.THRU_TIME }, true); 055 public static final UniqueKey<ForumDescriptions> FORUM_DESCRIPTIONS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumDescriptions.ForumDescriptions, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumDescriptions.ForumDescriptions.FORUM_DESCRIPTION }, true); 056 public static final UniqueKey<ForumDetails> FORUM_DETAILS_FORUM_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumDetails.ForumDetails, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumDetails.ForumDetails.FORUM, com.echothree.model.jooq.server.tables.forum.ForumDetails.ForumDetails.THRU_TIME }, true); 057 public static final UniqueKey<ForumDetails> FORUM_DETAILS_FORUM_NAME_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumDetails.ForumDetails, DSL.name("index2_idx"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumDetails.ForumDetails.FORUM_NAME, com.echothree.model.jooq.server.tables.forum.ForumDetails.ForumDetails.THRU_TIME }, true); 058 public static final UniqueKey<ForumDetails> FORUM_DETAILS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumDetails.ForumDetails, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumDetails.ForumDetails.FORUM_DETAIL }, true); 059 public static final UniqueKey<ForumForumThreads> FORUM_FORUM_THREADS_FORUM_AND_FORUM_THREAD_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumForumThreads.ForumForumThreads, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumForumThreads.ForumForumThreads.FORUM, com.echothree.model.jooq.server.tables.forum.ForumForumThreads.ForumForumThreads.FORUM_THREAD, com.echothree.model.jooq.server.tables.forum.ForumForumThreads.ForumForumThreads.THRU_TIME }, true); 060 public static final UniqueKey<ForumForumThreads> FORUM_FORUM_THREADS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumForumThreads.ForumForumThreads, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumForumThreads.ForumForumThreads.FORUM_FORUM }, true); 061 public static final UniqueKey<ForumGroupDescriptions> FORUM_GROUP_DESCRIPTIONS_FORUM_GROUP_AND_LANGUAGE_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumGroupDescriptions.ForumGroupDescriptions, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumGroupDescriptions.ForumGroupDescriptions.FORUM_GROUP, com.echothree.model.jooq.server.tables.forum.ForumGroupDescriptions.ForumGroupDescriptions.LANGUAGE, com.echothree.model.jooq.server.tables.forum.ForumGroupDescriptions.ForumGroupDescriptions.THRU_TIME }, true); 062 public static final UniqueKey<ForumGroupDescriptions> FORUM_GROUP_DESCRIPTIONS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumGroupDescriptions.ForumGroupDescriptions, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumGroupDescriptions.ForumGroupDescriptions.FORUM_GROUP_DESCRIPTION }, true); 063 public static final UniqueKey<ForumGroupDetails> FORUM_GROUP_DETAILS_FORUM_GROUP_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumGroupDetails.ForumGroupDetails, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumGroupDetails.ForumGroupDetails.FORUM_GROUP, com.echothree.model.jooq.server.tables.forum.ForumGroupDetails.ForumGroupDetails.THRU_TIME }, true); 064 public static final UniqueKey<ForumGroupDetails> FORUM_GROUP_DETAILS_FORUM_GROUP_NAME_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumGroupDetails.ForumGroupDetails, DSL.name("index2_idx"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumGroupDetails.ForumGroupDetails.FORUM_GROUP_NAME, com.echothree.model.jooq.server.tables.forum.ForumGroupDetails.ForumGroupDetails.THRU_TIME }, true); 065 public static final UniqueKey<ForumGroupDetails> FORUM_GROUP_DETAILS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumGroupDetails.ForumGroupDetails, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumGroupDetails.ForumGroupDetails.FORUM_GROUP_DETAIL }, true); 066 public static final UniqueKey<ForumGroupForums> FORUM_GROUP_FORUMS_FORUM_GROUP_AND_FORUM_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumGroupForums.ForumGroupForums, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumGroupForums.ForumGroupForums.FORUM_GROUP, com.echothree.model.jooq.server.tables.forum.ForumGroupForums.ForumGroupForums.FORUM, com.echothree.model.jooq.server.tables.forum.ForumGroupForums.ForumGroupForums.THRU_TIME }, true); 067 public static final UniqueKey<ForumGroupForums> FORUM_GROUP_FORUMS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumGroupForums.ForumGroupForums, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumGroupForums.ForumGroupForums.FORUM_GROUP_FORUM }, true); 068 public static final UniqueKey<ForumGroups> FORUM_GROUPS_ACTIVE_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumGroups.ForumGroups, DSL.name("activedetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumGroups.ForumGroups.ACTIVE_DETAIL }, true); 069 public static final UniqueKey<ForumGroups> FORUM_GROUPS_LAST_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumGroups.ForumGroups, DSL.name("lastdetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumGroups.ForumGroups.LAST_DETAIL }, true); 070 public static final UniqueKey<ForumGroups> FORUM_GROUPS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumGroups.ForumGroups, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumGroups.ForumGroups.FORUM_GROUP }, true); 071 public static final UniqueKey<ForumMessageAttachmentDescriptions> FORUM_MESSAGE_ATTACHMENT_DESCRIPTIONS_FORUM_MESSAGE_ATTACHMENT_AND_LANGUAGE_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumMessageAttachmentDescriptions.ForumMessageAttachmentDescriptions, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumMessageAttachmentDescriptions.ForumMessageAttachmentDescriptions.FORUM_MESSAGE_ATTACHMENT, com.echothree.model.jooq.server.tables.forum.ForumMessageAttachmentDescriptions.ForumMessageAttachmentDescriptions.LANGUAGE, com.echothree.model.jooq.server.tables.forum.ForumMessageAttachmentDescriptions.ForumMessageAttachmentDescriptions.THRU_TIME }, true); 072 public static final UniqueKey<ForumMessageAttachmentDescriptions> FORUM_MESSAGE_ATTACHMENT_DESCRIPTIONS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumMessageAttachmentDescriptions.ForumMessageAttachmentDescriptions, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumMessageAttachmentDescriptions.ForumMessageAttachmentDescriptions.FORUM_MESSAGE_ATTACHMENT_DESCRIPTION }, true); 073 public static final UniqueKey<ForumMessageAttachmentDetails> FORUM_MESSAGE_ATTACHMENT_DETAILS_FORUM_MESSAGE_ATTACHMENT_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumMessageAttachmentDetails.ForumMessageAttachmentDetails, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumMessageAttachmentDetails.ForumMessageAttachmentDetails.FORUM_MESSAGE_ATTACHMENT, com.echothree.model.jooq.server.tables.forum.ForumMessageAttachmentDetails.ForumMessageAttachmentDetails.THRU_TIME }, true); 074 public static final UniqueKey<ForumMessageAttachmentDetails> FORUM_MESSAGE_ATTACHMENT_DETAILS_FORUM_MESSAGE_AND_FORUM_MESSAGE_ATTACHMENT_SEQUENCE_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumMessageAttachmentDetails.ForumMessageAttachmentDetails, DSL.name("index2_idx"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumMessageAttachmentDetails.ForumMessageAttachmentDetails.FORUM_MESSAGE, com.echothree.model.jooq.server.tables.forum.ForumMessageAttachmentDetails.ForumMessageAttachmentDetails.FORUM_MESSAGE_ATTACHMENT_SEQUENCE, com.echothree.model.jooq.server.tables.forum.ForumMessageAttachmentDetails.ForumMessageAttachmentDetails.THRU_TIME }, true); 075 public static final UniqueKey<ForumMessageAttachmentDetails> FORUM_MESSAGE_ATTACHMENT_DETAILS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumMessageAttachmentDetails.ForumMessageAttachmentDetails, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumMessageAttachmentDetails.ForumMessageAttachmentDetails.FORUM_MESSAGE_ATTACHMENT_DETAIL }, true); 076 public static final UniqueKey<ForumMessageAttachments> FORUM_MESSAGE_ATTACHMENTS_ACTIVE_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumMessageAttachments.ForumMessageAttachments, DSL.name("activedetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumMessageAttachments.ForumMessageAttachments.ACTIVE_DETAIL }, true); 077 public static final UniqueKey<ForumMessageAttachments> FORUM_MESSAGE_ATTACHMENTS_LAST_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumMessageAttachments.ForumMessageAttachments, DSL.name("lastdetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumMessageAttachments.ForumMessageAttachments.LAST_DETAIL }, true); 078 public static final UniqueKey<ForumMessageAttachments> FORUM_MESSAGE_ATTACHMENTS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumMessageAttachments.ForumMessageAttachments, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumMessageAttachments.ForumMessageAttachments.FORUM_MESSAGE_ATTACHMENT }, true); 079 public static final UniqueKey<ForumMessageBlobAttachments> FORUM_MESSAGE_BLOB_ATTACHMENTS_FORUM_MESSAGE_ATTACHMENT_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumMessageBlobAttachments.ForumMessageBlobAttachments, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumMessageBlobAttachments.ForumMessageBlobAttachments.FORUM_MESSAGE_ATTACHMENT, com.echothree.model.jooq.server.tables.forum.ForumMessageBlobAttachments.ForumMessageBlobAttachments.THRU_TIME }, true); 080 public static final UniqueKey<ForumMessageBlobAttachments> FORUM_MESSAGE_BLOB_ATTACHMENTS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumMessageBlobAttachments.ForumMessageBlobAttachments, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumMessageBlobAttachments.ForumMessageBlobAttachments.FORUM_MESSAGE_BLOB_ATTACHMENT }, true); 081 public static final UniqueKey<ForumMessageClobAttachments> FORUM_MESSAGE_CLOB_ATTACHMENTS_FORUM_MESSAGE_ATTACHMENT_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumMessageClobAttachments.ForumMessageClobAttachments, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumMessageClobAttachments.ForumMessageClobAttachments.FORUM_MESSAGE_ATTACHMENT, com.echothree.model.jooq.server.tables.forum.ForumMessageClobAttachments.ForumMessageClobAttachments.THRU_TIME }, true); 082 public static final UniqueKey<ForumMessageClobAttachments> FORUM_MESSAGE_CLOB_ATTACHMENTS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumMessageClobAttachments.ForumMessageClobAttachments, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumMessageClobAttachments.ForumMessageClobAttachments.FORUM_MESSAGE_CLOB_ATTACHMENT }, true); 083 public static final UniqueKey<ForumMessageDetails> FORUM_MESSAGE_DETAILS_FORUM_MESSAGE_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumMessageDetails.ForumMessageDetails, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumMessageDetails.ForumMessageDetails.FORUM_MESSAGE, com.echothree.model.jooq.server.tables.forum.ForumMessageDetails.ForumMessageDetails.THRU_TIME }, true); 084 public static final UniqueKey<ForumMessageDetails> FORUM_MESSAGE_DETAILS_FORUM_MESSAGE_NAME_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumMessageDetails.ForumMessageDetails, DSL.name("index2_idx"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumMessageDetails.ForumMessageDetails.FORUM_MESSAGE_NAME, com.echothree.model.jooq.server.tables.forum.ForumMessageDetails.ForumMessageDetails.THRU_TIME }, true); 085 public static final UniqueKey<ForumMessageDetails> FORUM_MESSAGE_DETAILS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumMessageDetails.ForumMessageDetails, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumMessageDetails.ForumMessageDetails.FORUM_MESSAGE_DETAIL }, true); 086 public static final UniqueKey<ForumMessagePartDetails> FORUM_MESSAGE_PART_DETAILS_FORUM_MESSAGE_PART_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumMessagePartDetails.ForumMessagePartDetails, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumMessagePartDetails.ForumMessagePartDetails.FORUM_MESSAGE_PART, com.echothree.model.jooq.server.tables.forum.ForumMessagePartDetails.ForumMessagePartDetails.THRU_TIME }, true); 087 public static final UniqueKey<ForumMessagePartDetails> FORUM_MESSAGE_PART_DETAILS_FORUM_MESSAGE_AND_FORUM_MESSAGE_PART_TYPE_AND_LANGUAGE_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumMessagePartDetails.ForumMessagePartDetails, DSL.name("index2_idx"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumMessagePartDetails.ForumMessagePartDetails.FORUM_MESSAGE, com.echothree.model.jooq.server.tables.forum.ForumMessagePartDetails.ForumMessagePartDetails.FORUM_MESSAGE_PART_TYPE, com.echothree.model.jooq.server.tables.forum.ForumMessagePartDetails.ForumMessagePartDetails.LANGUAGE, com.echothree.model.jooq.server.tables.forum.ForumMessagePartDetails.ForumMessagePartDetails.THRU_TIME }, true); 088 public static final UniqueKey<ForumMessagePartDetails> FORUM_MESSAGE_PART_DETAILS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumMessagePartDetails.ForumMessagePartDetails, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumMessagePartDetails.ForumMessagePartDetails.FORUM_MESSAGE_PART_DETAIL }, true); 089 public static final UniqueKey<ForumMessageParts> FORUM_MESSAGE_PARTS_ACTIVE_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumMessageParts.ForumMessageParts, DSL.name("activedetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumMessageParts.ForumMessageParts.ACTIVE_DETAIL }, true); 090 public static final UniqueKey<ForumMessageParts> FORUM_MESSAGE_PARTS_LAST_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumMessageParts.ForumMessageParts, DSL.name("lastdetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumMessageParts.ForumMessageParts.LAST_DETAIL }, true); 091 public static final UniqueKey<ForumMessageParts> FORUM_MESSAGE_PARTS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumMessageParts.ForumMessageParts, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumMessageParts.ForumMessageParts.FORUM_MESSAGE_PART }, true); 092 public static final UniqueKey<ForumMessagePartTypeDescriptions> FORUM_MESSAGE_PART_TYPE_DESCRIPTIONS_FORUM_MESSAGE_PART_TYPE_AND_LANGUAGE_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumMessagePartTypeDescriptions.ForumMessagePartTypeDescriptions, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumMessagePartTypeDescriptions.ForumMessagePartTypeDescriptions.FORUM_MESSAGE_PART_TYPE, com.echothree.model.jooq.server.tables.forum.ForumMessagePartTypeDescriptions.ForumMessagePartTypeDescriptions.LANGUAGE }, true); 093 public static final UniqueKey<ForumMessagePartTypeDescriptions> FORUM_MESSAGE_PART_TYPE_DESCRIPTIONS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumMessagePartTypeDescriptions.ForumMessagePartTypeDescriptions, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumMessagePartTypeDescriptions.ForumMessagePartTypeDescriptions.FORUM_MESSAGE_PART_TYPE_DESCRIPTION }, true); 094 public static final UniqueKey<ForumMessagePartTypes> FORUM_MESSAGE_PART_TYPES_FORUM_MESSAGE_PART_TYPE_NAME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumMessagePartTypes.ForumMessagePartTypes, DSL.name("forummessageparttypename_idx"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumMessagePartTypes.ForumMessagePartTypes.FORUM_MESSAGE_PART_TYPE_NAME }, true); 095 public static final UniqueKey<ForumMessagePartTypes> FORUM_MESSAGE_PART_TYPES_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumMessagePartTypes.ForumMessagePartTypes, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumMessagePartTypes.ForumMessagePartTypes.FORUM_MESSAGE_PART_TYPE }, true); 096 public static final UniqueKey<ForumMessageRoles> FORUM_MESSAGE_ROLES_FORUM_MESSAGE_AND_FORUM_ROLE_TYPE_AND_PARTY_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumMessageRoles.ForumMessageRoles, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumMessageRoles.ForumMessageRoles.FORUM_MESSAGE, com.echothree.model.jooq.server.tables.forum.ForumMessageRoles.ForumMessageRoles.FORUM_ROLE_TYPE, com.echothree.model.jooq.server.tables.forum.ForumMessageRoles.ForumMessageRoles.PARTY, com.echothree.model.jooq.server.tables.forum.ForumMessageRoles.ForumMessageRoles.THRU_TIME }, true); 097 public static final UniqueKey<ForumMessageRoles> FORUM_MESSAGE_ROLES_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumMessageRoles.ForumMessageRoles, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumMessageRoles.ForumMessageRoles.FORUM_MESSAGE_ROLE }, true); 098 public static final UniqueKey<ForumMessages> FORUM_MESSAGES_ACTIVE_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumMessages.ForumMessages, DSL.name("activedetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumMessages.ForumMessages.ACTIVE_DETAIL }, true); 099 public static final UniqueKey<ForumMessages> FORUM_MESSAGES_LAST_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumMessages.ForumMessages, DSL.name("lastdetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumMessages.ForumMessages.LAST_DETAIL }, true); 100 public static final UniqueKey<ForumMessages> FORUM_MESSAGES_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumMessages.ForumMessages, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumMessages.ForumMessages.FORUM_MESSAGE }, true); 101 public static final UniqueKey<ForumMessageStatuses> FORUM_MESSAGE_STATUSES_FORUM_MESSAGE_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumMessageStatuses.ForumMessageStatuses, DSL.name("forummessageid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumMessageStatuses.ForumMessageStatuses.FORUM_MESSAGE }, true); 102 public static final UniqueKey<ForumMessageStatuses> FORUM_MESSAGE_STATUSES_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumMessageStatuses.ForumMessageStatuses, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumMessageStatuses.ForumMessageStatuses.FORUM_MESSAGE_STATUS }, true); 103 public static final UniqueKey<ForumMessageTypeDescriptions> FORUM_MESSAGE_TYPE_DESCRIPTIONS_FORUM_MESSAGE_TYPE_AND_LANGUAGE_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumMessageTypeDescriptions.ForumMessageTypeDescriptions, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumMessageTypeDescriptions.ForumMessageTypeDescriptions.FORUM_MESSAGE_TYPE, com.echothree.model.jooq.server.tables.forum.ForumMessageTypeDescriptions.ForumMessageTypeDescriptions.LANGUAGE }, true); 104 public static final UniqueKey<ForumMessageTypeDescriptions> FORUM_MESSAGE_TYPE_DESCRIPTIONS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumMessageTypeDescriptions.ForumMessageTypeDescriptions, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumMessageTypeDescriptions.ForumMessageTypeDescriptions.FORUM_MESSAGE_TYPE_DESCRIPTION }, true); 105 public static final UniqueKey<ForumMessageTypePartTypes> FORUM_MESSAGE_TYPE_PART_TYPES_FORUM_MESSAGE_TYPE_AND_SORT_ORDER_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumMessageTypePartTypes.ForumMessageTypePartTypes, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumMessageTypePartTypes.ForumMessageTypePartTypes.FORUM_MESSAGE_TYPE, com.echothree.model.jooq.server.tables.forum.ForumMessageTypePartTypes.ForumMessageTypePartTypes.SORT_ORDER }, true); 106 public static final UniqueKey<ForumMessageTypePartTypes> FORUM_MESSAGE_TYPE_PART_TYPES_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumMessageTypePartTypes.ForumMessageTypePartTypes, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumMessageTypePartTypes.ForumMessageTypePartTypes.FORUM_MESSAGE_TYPE_PART_TYPE }, true); 107 public static final UniqueKey<ForumMessageTypes> FORUM_MESSAGE_TYPES_FORUM_MESSAGE_TYPE_NAME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumMessageTypes.ForumMessageTypes, DSL.name("forummessagetypename_idx"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumMessageTypes.ForumMessageTypes.FORUM_MESSAGE_TYPE_NAME }, true); 108 public static final UniqueKey<ForumMessageTypes> FORUM_MESSAGE_TYPES_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumMessageTypes.ForumMessageTypes, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumMessageTypes.ForumMessageTypes.FORUM_MESSAGE_TYPE }, true); 109 public static final UniqueKey<ForumMimeTypes> FORUM_MIME_TYPES_FORUM_AND_MIME_TYPE_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumMimeTypes.ForumMimeTypes, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumMimeTypes.ForumMimeTypes.FORUM, com.echothree.model.jooq.server.tables.forum.ForumMimeTypes.ForumMimeTypes.MIME_TYPE, com.echothree.model.jooq.server.tables.forum.ForumMimeTypes.ForumMimeTypes.THRU_TIME }, true); 110 public static final UniqueKey<ForumMimeTypes> FORUM_MIME_TYPES_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumMimeTypes.ForumMimeTypes, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumMimeTypes.ForumMimeTypes.FORUM_MIME_TYPE }, true); 111 public static final UniqueKey<ForumPartyRoles> FORUM_PARTY_ROLES_FORUM_AND_PARTY_AND_FORUM_ROLE_TYPE_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumPartyRoles.ForumPartyRoles, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumPartyRoles.ForumPartyRoles.FORUM, com.echothree.model.jooq.server.tables.forum.ForumPartyRoles.ForumPartyRoles.PARTY, com.echothree.model.jooq.server.tables.forum.ForumPartyRoles.ForumPartyRoles.FORUM_ROLE_TYPE, com.echothree.model.jooq.server.tables.forum.ForumPartyRoles.ForumPartyRoles.THRU_TIME }, true); 112 public static final UniqueKey<ForumPartyRoles> FORUM_PARTY_ROLES_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumPartyRoles.ForumPartyRoles, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumPartyRoles.ForumPartyRoles.FORUM_PARTY_ROLE }, true); 113 public static final UniqueKey<ForumPartyTypeRoles> FORUM_PARTY_TYPE_ROLES_FORUM_AND_PARTY_TYPE_AND_FORUM_ROLE_TYPE_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumPartyTypeRoles.ForumPartyTypeRoles, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumPartyTypeRoles.ForumPartyTypeRoles.FORUM, com.echothree.model.jooq.server.tables.forum.ForumPartyTypeRoles.ForumPartyTypeRoles.PARTY_TYPE, com.echothree.model.jooq.server.tables.forum.ForumPartyTypeRoles.ForumPartyTypeRoles.FORUM_ROLE_TYPE, com.echothree.model.jooq.server.tables.forum.ForumPartyTypeRoles.ForumPartyTypeRoles.THRU_TIME }, true); 114 public static final UniqueKey<ForumPartyTypeRoles> FORUM_PARTY_TYPE_ROLES_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumPartyTypeRoles.ForumPartyTypeRoles, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumPartyTypeRoles.ForumPartyTypeRoles.FORUM_PARTY_TYPE_ROLE }, true); 115 public static final UniqueKey<ForumRoleTypeDescriptions> FORUM_ROLE_TYPE_DESCRIPTIONS_FORUM_ROLE_TYPE_AND_LANGUAGE_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumRoleTypeDescriptions.ForumRoleTypeDescriptions, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumRoleTypeDescriptions.ForumRoleTypeDescriptions.FORUM_ROLE_TYPE, com.echothree.model.jooq.server.tables.forum.ForumRoleTypeDescriptions.ForumRoleTypeDescriptions.LANGUAGE }, true); 116 public static final UniqueKey<ForumRoleTypeDescriptions> FORUM_ROLE_TYPE_DESCRIPTIONS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumRoleTypeDescriptions.ForumRoleTypeDescriptions, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumRoleTypeDescriptions.ForumRoleTypeDescriptions.FORUM_ROLE_TYPE_DESCRIPTION }, true); 117 public static final UniqueKey<ForumRoleTypes> FORUM_ROLE_TYPES_FORUM_ROLE_TYPE_NAME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumRoleTypes.ForumRoleTypes, DSL.name("forumroletypename_idx"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumRoleTypes.ForumRoleTypes.FORUM_ROLE_TYPE_NAME }, true); 118 public static final UniqueKey<ForumRoleTypes> FORUM_ROLE_TYPES_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumRoleTypes.ForumRoleTypes, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumRoleTypes.ForumRoleTypes.FORUM_ROLE_TYPE }, true); 119 public static final UniqueKey<Forums> FORUMS_ACTIVE_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.Forums.Forums, DSL.name("activedetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.forum.Forums.Forums.ACTIVE_DETAIL }, true); 120 public static final UniqueKey<Forums> FORUMS_LAST_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.Forums.Forums, DSL.name("lastdetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.forum.Forums.Forums.LAST_DETAIL }, true); 121 public static final UniqueKey<Forums> FORUMS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.Forums.Forums, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.forum.Forums.Forums.FORUM }, true); 122 public static final UniqueKey<ForumStringMessageParts> FORUM_STRING_MESSAGE_PARTS_FORUM_MESSAGE_PART_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumStringMessageParts.ForumStringMessageParts, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumStringMessageParts.ForumStringMessageParts.FORUM_MESSAGE_PART, com.echothree.model.jooq.server.tables.forum.ForumStringMessageParts.ForumStringMessageParts.THRU_TIME }, true); 123 public static final UniqueKey<ForumStringMessageParts> FORUM_STRING_MESSAGE_PARTS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumStringMessageParts.ForumStringMessageParts, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumStringMessageParts.ForumStringMessageParts.FORUM_STRING_MESSAGE_PART }, true); 124 public static final UniqueKey<ForumThreadDetails> FORUM_THREAD_DETAILS_FORUM_THREAD_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumThreadDetails.ForumThreadDetails, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumThreadDetails.ForumThreadDetails.FORUM_THREAD, com.echothree.model.jooq.server.tables.forum.ForumThreadDetails.ForumThreadDetails.THRU_TIME }, true); 125 public static final UniqueKey<ForumThreadDetails> FORUM_THREAD_DETAILS_FORUM_THREAD_NAME_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumThreadDetails.ForumThreadDetails, DSL.name("index2_idx"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumThreadDetails.ForumThreadDetails.FORUM_THREAD_NAME, com.echothree.model.jooq.server.tables.forum.ForumThreadDetails.ForumThreadDetails.THRU_TIME }, true); 126 public static final UniqueKey<ForumThreadDetails> FORUM_THREAD_DETAILS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumThreadDetails.ForumThreadDetails, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumThreadDetails.ForumThreadDetails.FORUM_THREAD_DETAIL }, true); 127 public static final UniqueKey<ForumThreads> FORUM_THREADS_ACTIVE_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumThreads.ForumThreads, DSL.name("activedetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumThreads.ForumThreads.ACTIVE_DETAIL }, true); 128 public static final UniqueKey<ForumThreads> FORUM_THREADS_LAST_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumThreads.ForumThreads, DSL.name("lastdetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumThreads.ForumThreads.LAST_DETAIL }, true); 129 public static final UniqueKey<ForumThreads> FORUM_THREADS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumThreads.ForumThreads, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumThreads.ForumThreads.FORUM_THREAD }, true); 130 public static final UniqueKey<ForumTypeDescriptions> FORUM_TYPE_DESCRIPTIONS_FORUM_TYPE_AND_LANGUAGE_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumTypeDescriptions.ForumTypeDescriptions, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumTypeDescriptions.ForumTypeDescriptions.FORUM_TYPE, com.echothree.model.jooq.server.tables.forum.ForumTypeDescriptions.ForumTypeDescriptions.LANGUAGE }, true); 131 public static final UniqueKey<ForumTypeDescriptions> FORUM_TYPE_DESCRIPTIONS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumTypeDescriptions.ForumTypeDescriptions, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumTypeDescriptions.ForumTypeDescriptions.FORUM_TYPE_DESCRIPTION }, true); 132 public static final UniqueKey<ForumTypeMessageTypes> FORUM_TYPE_MESSAGE_TYPES_FORUM_TYPE_AND_FORUM_MESSAGE_TYPE_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumTypeMessageTypes.ForumTypeMessageTypes, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumTypeMessageTypes.ForumTypeMessageTypes.FORUM_TYPE, com.echothree.model.jooq.server.tables.forum.ForumTypeMessageTypes.ForumTypeMessageTypes.FORUM_MESSAGE_TYPE }, true); 133 public static final UniqueKey<ForumTypeMessageTypes> FORUM_TYPE_MESSAGE_TYPES_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumTypeMessageTypes.ForumTypeMessageTypes, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumTypeMessageTypes.ForumTypeMessageTypes.FORUM_TYPE_MESSAGE_TYPE }, true); 134 public static final UniqueKey<ForumTypes> FORUM_TYPES_FORUM_TYPE_NAME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumTypes.ForumTypes, DSL.name("forumtypename_idx"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumTypes.ForumTypes.FORUM_TYPE_NAME }, true); 135 public static final UniqueKey<ForumTypes> FORUM_TYPES_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.forum.ForumTypes.ForumTypes, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.forum.ForumTypes.ForumTypes.FORUM_TYPE }, true); 136}