001package com.echothree.model.jooq.server.keys.user; 002 003import com.echothree.model.jooq.server.records.user.RecoveryAnswerDetails; 004import com.echothree.model.jooq.server.records.user.RecoveryAnswers; 005import com.echothree.model.jooq.server.records.user.RecoveryQuestionDescriptions; 006import com.echothree.model.jooq.server.records.user.RecoveryQuestionDetails; 007import com.echothree.model.jooq.server.records.user.RecoveryQuestions; 008import com.echothree.model.jooq.server.records.user.UserKeyDetails; 009import com.echothree.model.jooq.server.records.user.UserKeyStatuses; 010import com.echothree.model.jooq.server.records.user.UserKeys; 011import com.echothree.model.jooq.server.records.user.UserLoginPasswordEncoderTypeDescriptions; 012import com.echothree.model.jooq.server.records.user.UserLoginPasswordEncoderTypes; 013import com.echothree.model.jooq.server.records.user.UserLoginPasswordStrings; 014import com.echothree.model.jooq.server.records.user.UserLoginPasswordTypeDescriptions; 015import com.echothree.model.jooq.server.records.user.UserLoginPasswordTypes; 016import com.echothree.model.jooq.server.records.user.UserLoginPasswords; 017import com.echothree.model.jooq.server.records.user.UserLoginStatuses; 018import com.echothree.model.jooq.server.records.user.UserLogins; 019import com.echothree.model.jooq.server.records.user.UserSessions; 020import com.echothree.model.jooq.server.records.user.UserVisitCommands; 021import com.echothree.model.jooq.server.records.user.UserVisitGroupDetails; 022import com.echothree.model.jooq.server.records.user.UserVisitGroups; 023import com.echothree.model.jooq.server.records.user.UserVisitStatuses; 024import com.echothree.model.jooq.server.records.user.UserVisits; 025 026import org.jooq.TableField; 027import org.jooq.UniqueKey; 028import org.jooq.impl.DSL; 029import org.jooq.impl.Internal; 030 031/** 032 * Key definitions for the UserUnique component. 033 */ 034public interface UserUniqueKeys { 035 public static final UniqueKey<RecoveryAnswerDetails> RECOVERY_ANSWER_DETAILS_RECOVERY_ANSWER_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.user.RecoveryAnswerDetails.RecoveryAnswerDetails, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.user.RecoveryAnswerDetails.RecoveryAnswerDetails.RECOVERY_ANSWER, com.echothree.model.jooq.server.tables.user.RecoveryAnswerDetails.RecoveryAnswerDetails.THRU_TIME }, true); 036 public static final UniqueKey<RecoveryAnswerDetails> RECOVERY_ANSWER_DETAILS_PARTY_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.user.RecoveryAnswerDetails.RecoveryAnswerDetails, DSL.name("index2_idx"), new TableField[] { com.echothree.model.jooq.server.tables.user.RecoveryAnswerDetails.RecoveryAnswerDetails.PARTY, com.echothree.model.jooq.server.tables.user.RecoveryAnswerDetails.RecoveryAnswerDetails.THRU_TIME }, true); 037 public static final UniqueKey<RecoveryAnswerDetails> RECOVERY_ANSWER_DETAILS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.user.RecoveryAnswerDetails.RecoveryAnswerDetails, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.user.RecoveryAnswerDetails.RecoveryAnswerDetails.RECOVERY_ANSWER_DETAIL }, true); 038 public static final UniqueKey<RecoveryAnswers> RECOVERY_ANSWERS_ACTIVE_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.user.RecoveryAnswers.RecoveryAnswers, DSL.name("activedetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.user.RecoveryAnswers.RecoveryAnswers.ACTIVE_DETAIL }, true); 039 public static final UniqueKey<RecoveryAnswers> RECOVERY_ANSWERS_LAST_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.user.RecoveryAnswers.RecoveryAnswers, DSL.name("lastdetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.user.RecoveryAnswers.RecoveryAnswers.LAST_DETAIL }, true); 040 public static final UniqueKey<RecoveryAnswers> RECOVERY_ANSWERS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.user.RecoveryAnswers.RecoveryAnswers, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.user.RecoveryAnswers.RecoveryAnswers.RECOVERY_ANSWER }, true); 041 public static final UniqueKey<RecoveryQuestionDescriptions> RECOVERY_QUESTION_DESCRIPTIONS_RECOVERY_QUESTION_AND_LANGUAGE_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.user.RecoveryQuestionDescriptions.RecoveryQuestionDescriptions, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.user.RecoveryQuestionDescriptions.RecoveryQuestionDescriptions.RECOVERY_QUESTION, com.echothree.model.jooq.server.tables.user.RecoveryQuestionDescriptions.RecoveryQuestionDescriptions.LANGUAGE, com.echothree.model.jooq.server.tables.user.RecoveryQuestionDescriptions.RecoveryQuestionDescriptions.THRU_TIME }, true); 042 public static final UniqueKey<RecoveryQuestionDescriptions> RECOVERY_QUESTION_DESCRIPTIONS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.user.RecoveryQuestionDescriptions.RecoveryQuestionDescriptions, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.user.RecoveryQuestionDescriptions.RecoveryQuestionDescriptions.RECOVERY_QUESTION_DESCRIPTION }, true); 043 public static final UniqueKey<RecoveryQuestionDetails> RECOVERY_QUESTION_DETAILS_RECOVERY_QUESTION_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.user.RecoveryQuestionDetails.RecoveryQuestionDetails, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.user.RecoveryQuestionDetails.RecoveryQuestionDetails.RECOVERY_QUESTION, com.echothree.model.jooq.server.tables.user.RecoveryQuestionDetails.RecoveryQuestionDetails.THRU_TIME }, true); 044 public static final UniqueKey<RecoveryQuestionDetails> RECOVERY_QUESTION_DETAILS_RECOVERY_QUESTION_NAME_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.user.RecoveryQuestionDetails.RecoveryQuestionDetails, DSL.name("index2_idx"), new TableField[] { com.echothree.model.jooq.server.tables.user.RecoveryQuestionDetails.RecoveryQuestionDetails.RECOVERY_QUESTION_NAME, com.echothree.model.jooq.server.tables.user.RecoveryQuestionDetails.RecoveryQuestionDetails.THRU_TIME }, true); 045 public static final UniqueKey<RecoveryQuestionDetails> RECOVERY_QUESTION_DETAILS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.user.RecoveryQuestionDetails.RecoveryQuestionDetails, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.user.RecoveryQuestionDetails.RecoveryQuestionDetails.RECOVERY_QUESTION_DETAIL }, true); 046 public static final UniqueKey<RecoveryQuestions> RECOVERY_QUESTIONS_ACTIVE_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.user.RecoveryQuestions.RecoveryQuestions, DSL.name("activedetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.user.RecoveryQuestions.RecoveryQuestions.ACTIVE_DETAIL }, true); 047 public static final UniqueKey<RecoveryQuestions> RECOVERY_QUESTIONS_LAST_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.user.RecoveryQuestions.RecoveryQuestions, DSL.name("lastdetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.user.RecoveryQuestions.RecoveryQuestions.LAST_DETAIL }, true); 048 public static final UniqueKey<RecoveryQuestions> RECOVERY_QUESTIONS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.user.RecoveryQuestions.RecoveryQuestions, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.user.RecoveryQuestions.RecoveryQuestions.RECOVERY_QUESTION }, true); 049 public static final UniqueKey<UserKeyDetails> USER_KEY_DETAILS_USER_KEY_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.user.UserKeyDetails.UserKeyDetails, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.user.UserKeyDetails.UserKeyDetails.USER_KEY, com.echothree.model.jooq.server.tables.user.UserKeyDetails.UserKeyDetails.THRU_TIME }, true); 050 public static final UniqueKey<UserKeyDetails> USER_KEY_DETAILS_USER_KEY_NAME_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.user.UserKeyDetails.UserKeyDetails, DSL.name("index2_idx"), new TableField[] { com.echothree.model.jooq.server.tables.user.UserKeyDetails.UserKeyDetails.USER_KEY_NAME, com.echothree.model.jooq.server.tables.user.UserKeyDetails.UserKeyDetails.THRU_TIME }, true); 051 public static final UniqueKey<UserKeyDetails> USER_KEY_DETAILS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.user.UserKeyDetails.UserKeyDetails, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.user.UserKeyDetails.UserKeyDetails.USER_KEY_DETAIL }, true); 052 public static final UniqueKey<UserKeys> USER_KEYS_ACTIVE_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.user.UserKeys.UserKeys, DSL.name("activedetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.user.UserKeys.UserKeys.ACTIVE_DETAIL }, true); 053 public static final UniqueKey<UserKeys> USER_KEYS_LAST_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.user.UserKeys.UserKeys, DSL.name("lastdetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.user.UserKeys.UserKeys.LAST_DETAIL }, true); 054 public static final UniqueKey<UserKeys> USER_KEYS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.user.UserKeys.UserKeys, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.user.UserKeys.UserKeys.USER_KEY }, true); 055 public static final UniqueKey<UserKeyStatuses> USER_KEY_STATUSES_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.user.UserKeyStatuses.UserKeyStatuses, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.user.UserKeyStatuses.UserKeyStatuses.USER_KEY_STATUS }, true); 056 public static final UniqueKey<UserKeyStatuses> USER_KEY_STATUSES_USER_KEY_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.user.UserKeyStatuses.UserKeyStatuses, DSL.name("userkeyid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.user.UserKeyStatuses.UserKeyStatuses.USER_KEY }, true); 057 public static final UniqueKey<UserLoginPasswordEncoderTypeDescriptions> USER_LOGIN_PASSWORD_ENCODER_TYPE_DESCRIPTIONS_USER_LOGIN_PASSWORD_ENCODER_TYPE_AND_LANGUAGE_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.user.UserLoginPasswordEncoderTypeDescriptions.UserLoginPasswordEncoderTypeDescriptions, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.user.UserLoginPasswordEncoderTypeDescriptions.UserLoginPasswordEncoderTypeDescriptions.USER_LOGIN_PASSWORD_ENCODER_TYPE, com.echothree.model.jooq.server.tables.user.UserLoginPasswordEncoderTypeDescriptions.UserLoginPasswordEncoderTypeDescriptions.LANGUAGE }, true); 058 public static final UniqueKey<UserLoginPasswordEncoderTypeDescriptions> USER_LOGIN_PASSWORD_ENCODER_TYPE_DESCRIPTIONS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.user.UserLoginPasswordEncoderTypeDescriptions.UserLoginPasswordEncoderTypeDescriptions, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.user.UserLoginPasswordEncoderTypeDescriptions.UserLoginPasswordEncoderTypeDescriptions.USER_LOGIN_PASSWORD_ENCODER_TYPE_DESCRIPTION }, true); 059 public static final UniqueKey<UserLoginPasswordEncoderTypes> USER_LOGIN_PASSWORD_ENCODER_TYPES_USER_LOGIN_PASSWORD_ENCODER_TYPE_NAME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.user.UserLoginPasswordEncoderTypes.UserLoginPasswordEncoderTypes, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.user.UserLoginPasswordEncoderTypes.UserLoginPasswordEncoderTypes.USER_LOGIN_PASSWORD_ENCODER_TYPE_NAME }, true); 060 public static final UniqueKey<UserLoginPasswordEncoderTypes> USER_LOGIN_PASSWORD_ENCODER_TYPES_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.user.UserLoginPasswordEncoderTypes.UserLoginPasswordEncoderTypes, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.user.UserLoginPasswordEncoderTypes.UserLoginPasswordEncoderTypes.USER_LOGIN_PASSWORD_ENCODER_TYPE }, true); 061 public static final UniqueKey<UserLoginPasswords> USER_LOGIN_PASSWORDS_PARTY_AND_USER_LOGIN_PASSWORD_TYPE_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.user.UserLoginPasswords.UserLoginPasswords, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.user.UserLoginPasswords.UserLoginPasswords.PARTY, com.echothree.model.jooq.server.tables.user.UserLoginPasswords.UserLoginPasswords.USER_LOGIN_PASSWORD_TYPE, com.echothree.model.jooq.server.tables.user.UserLoginPasswords.UserLoginPasswords.THRU_TIME }, true); 062 public static final UniqueKey<UserLoginPasswords> USER_LOGIN_PASSWORDS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.user.UserLoginPasswords.UserLoginPasswords, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.user.UserLoginPasswords.UserLoginPasswords.USER_LOGIN_PASSWORD }, true); 063 public static final UniqueKey<UserLoginPasswordStrings> USER_LOGIN_PASSWORD_STRINGS_USER_LOGIN_PASSWORD_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.user.UserLoginPasswordStrings.UserLoginPasswordStrings, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.user.UserLoginPasswordStrings.UserLoginPasswordStrings.USER_LOGIN_PASSWORD, com.echothree.model.jooq.server.tables.user.UserLoginPasswordStrings.UserLoginPasswordStrings.THRU_TIME }, true); 064 public static final UniqueKey<UserLoginPasswordStrings> USER_LOGIN_PASSWORD_STRINGS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.user.UserLoginPasswordStrings.UserLoginPasswordStrings, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.user.UserLoginPasswordStrings.UserLoginPasswordStrings.USER_LOGIN_PASSWORD_STRING }, true); 065 public static final UniqueKey<UserLoginPasswordTypeDescriptions> USER_LOGIN_PASSWORD_TYPE_DESCRIPTIONS_USER_LOGIN_PASSWORD_TYPE_AND_LANGUAGE_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.user.UserLoginPasswordTypeDescriptions.UserLoginPasswordTypeDescriptions, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.user.UserLoginPasswordTypeDescriptions.UserLoginPasswordTypeDescriptions.USER_LOGIN_PASSWORD_TYPE, com.echothree.model.jooq.server.tables.user.UserLoginPasswordTypeDescriptions.UserLoginPasswordTypeDescriptions.LANGUAGE }, true); 066 public static final UniqueKey<UserLoginPasswordTypeDescriptions> USER_LOGIN_PASSWORD_TYPE_DESCRIPTIONS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.user.UserLoginPasswordTypeDescriptions.UserLoginPasswordTypeDescriptions, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.user.UserLoginPasswordTypeDescriptions.UserLoginPasswordTypeDescriptions.USER_LOGIN_PASSWORD_TYPE_DESCRIPTION }, true); 067 public static final UniqueKey<UserLoginPasswordTypes> USER_LOGIN_PASSWORD_TYPES_USER_LOGIN_PASSWORD_TYPE_NAME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.user.UserLoginPasswordTypes.UserLoginPasswordTypes, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.user.UserLoginPasswordTypes.UserLoginPasswordTypes.USER_LOGIN_PASSWORD_TYPE_NAME }, true); 068 public static final UniqueKey<UserLoginPasswordTypes> USER_LOGIN_PASSWORD_TYPES_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.user.UserLoginPasswordTypes.UserLoginPasswordTypes, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.user.UserLoginPasswordTypes.UserLoginPasswordTypes.USER_LOGIN_PASSWORD_TYPE }, true); 069 public static final UniqueKey<UserLogins> USER_LOGINS_PARTY_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.user.UserLogins.UserLogins, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.user.UserLogins.UserLogins.PARTY, com.echothree.model.jooq.server.tables.user.UserLogins.UserLogins.THRU_TIME }, true); 070 public static final UniqueKey<UserLogins> USER_LOGINS_USERNAME_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.user.UserLogins.UserLogins, DSL.name("index2_idx"), new TableField[] { com.echothree.model.jooq.server.tables.user.UserLogins.UserLogins.USERNAME, com.echothree.model.jooq.server.tables.user.UserLogins.UserLogins.THRU_TIME }, true); 071 public static final UniqueKey<UserLogins> USER_LOGINS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.user.UserLogins.UserLogins, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.user.UserLogins.UserLogins.USER_LOGIN }, true); 072 public static final UniqueKey<UserLoginStatuses> USER_LOGIN_STATUSES_PARTY_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.user.UserLoginStatuses.UserLoginStatuses, DSL.name("partyid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.user.UserLoginStatuses.UserLoginStatuses.PARTY }, true); 073 public static final UniqueKey<UserLoginStatuses> USER_LOGIN_STATUSES_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.user.UserLoginStatuses.UserLoginStatuses, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.user.UserLoginStatuses.UserLoginStatuses.USER_LOGIN_STATUS }, true); 074 public static final UniqueKey<UserSessions> USER_SESSIONS_USER_VISIT_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.user.UserSessions.UserSessions, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.user.UserSessions.UserSessions.USER_VISIT, com.echothree.model.jooq.server.tables.user.UserSessions.UserSessions.THRU_TIME }, true); 075 public static final UniqueKey<UserSessions> USER_SESSIONS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.user.UserSessions.UserSessions, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.user.UserSessions.UserSessions.USER_SESSION }, true); 076 public static final UniqueKey<UserVisitCommands> USER_VISIT_COMMANDS_USER_VISIT_AND_USER_VISIT_COMMAND_SEQUENCE_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.user.UserVisitCommands.UserVisitCommands, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.user.UserVisitCommands.UserVisitCommands.USER_VISIT, com.echothree.model.jooq.server.tables.user.UserVisitCommands.UserVisitCommands.USER_VISIT_COMMAND_SEQUENCE }, true); 077 public static final UniqueKey<UserVisitCommands> USER_VISIT_COMMANDS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.user.UserVisitCommands.UserVisitCommands, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.user.UserVisitCommands.UserVisitCommands.USER_VISIT_COMMAND }, true); 078 public static final UniqueKey<UserVisitGroupDetails> USER_VISIT_GROUP_DETAILS_USER_VISIT_GROUP_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.user.UserVisitGroupDetails.UserVisitGroupDetails, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.user.UserVisitGroupDetails.UserVisitGroupDetails.USER_VISIT_GROUP, com.echothree.model.jooq.server.tables.user.UserVisitGroupDetails.UserVisitGroupDetails.THRU_TIME }, true); 079 public static final UniqueKey<UserVisitGroupDetails> USER_VISIT_GROUP_DETAILS_USER_VISIT_GROUP_NAME_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.user.UserVisitGroupDetails.UserVisitGroupDetails, DSL.name("index2_idx"), new TableField[] { com.echothree.model.jooq.server.tables.user.UserVisitGroupDetails.UserVisitGroupDetails.USER_VISIT_GROUP_NAME, com.echothree.model.jooq.server.tables.user.UserVisitGroupDetails.UserVisitGroupDetails.THRU_TIME }, true); 080 public static final UniqueKey<UserVisitGroupDetails> USER_VISIT_GROUP_DETAILS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.user.UserVisitGroupDetails.UserVisitGroupDetails, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.user.UserVisitGroupDetails.UserVisitGroupDetails.USER_VISIT_GROUP_DETAIL }, true); 081 public static final UniqueKey<UserVisitGroups> USER_VISIT_GROUPS_ACTIVE_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.user.UserVisitGroups.UserVisitGroups, DSL.name("activedetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.user.UserVisitGroups.UserVisitGroups.ACTIVE_DETAIL }, true); 082 public static final UniqueKey<UserVisitGroups> USER_VISIT_GROUPS_LAST_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.user.UserVisitGroups.UserVisitGroups, DSL.name("lastdetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.user.UserVisitGroups.UserVisitGroups.LAST_DETAIL }, true); 083 public static final UniqueKey<UserVisitGroups> USER_VISIT_GROUPS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.user.UserVisitGroups.UserVisitGroups, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.user.UserVisitGroups.UserVisitGroups.USER_VISIT_GROUP }, true); 084 public static final UniqueKey<UserVisits> USER_VISITS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.user.UserVisits.UserVisits, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.user.UserVisits.UserVisits.USER_VISIT }, true); 085 public static final UniqueKey<UserVisitStatuses> USER_VISIT_STATUSES_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.user.UserVisitStatuses.UserVisitStatuses, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.user.UserVisitStatuses.UserVisitStatuses.USER_VISIT_STATUS }, true); 086 public static final UniqueKey<UserVisitStatuses> USER_VISIT_STATUSES_USER_VISIT_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.user.UserVisitStatuses.UserVisitStatuses, DSL.name("uservisitid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.user.UserVisitStatuses.UserVisitStatuses.USER_VISIT }, true); 087}