001package com.echothree.model.jooq.server.keys.party; 002 003import com.echothree.model.jooq.server.KeyRegistry; 004import com.echothree.model.jooq.server.records.accounting.Currencies; 005import com.echothree.model.jooq.server.records.core.ApplicationEditorUses; 006import com.echothree.model.jooq.server.records.core.ApplicationEditors; 007import com.echothree.model.jooq.server.records.core.EntityTypes; 008import com.echothree.model.jooq.server.records.core.MimeTypes; 009import com.echothree.model.jooq.server.records.icon.Icons; 010import com.echothree.model.jooq.server.records.party.BirthdayFormatDescriptions; 011import com.echothree.model.jooq.server.records.party.BirthdayFormatDetails; 012import com.echothree.model.jooq.server.records.party.BirthdayFormats; 013import com.echothree.model.jooq.server.records.party.DateTimeFormatDescriptions; 014import com.echothree.model.jooq.server.records.party.DateTimeFormatDetails; 015import com.echothree.model.jooq.server.records.party.DateTimeFormats; 016import com.echothree.model.jooq.server.records.party.GenderDescriptions; 017import com.echothree.model.jooq.server.records.party.GenderDetails; 018import com.echothree.model.jooq.server.records.party.Genders; 019import com.echothree.model.jooq.server.records.party.LanguageDescriptions; 020import com.echothree.model.jooq.server.records.party.Languages; 021import com.echothree.model.jooq.server.records.party.NameSuffixDetails; 022import com.echothree.model.jooq.server.records.party.NameSuffixes; 023import com.echothree.model.jooq.server.records.party.Parties; 024import com.echothree.model.jooq.server.records.party.PartyAliasTypeDescriptions; 025import com.echothree.model.jooq.server.records.party.PartyAliasTypeDetails; 026import com.echothree.model.jooq.server.records.party.PartyAliasTypes; 027import com.echothree.model.jooq.server.records.party.PartyAliases; 028import com.echothree.model.jooq.server.records.party.PartyApplicationEditorUseDetails; 029import com.echothree.model.jooq.server.records.party.PartyApplicationEditorUses; 030import com.echothree.model.jooq.server.records.party.PartyCompanies; 031import com.echothree.model.jooq.server.records.party.PartyDepartments; 032import com.echothree.model.jooq.server.records.party.PartyDetails; 033import com.echothree.model.jooq.server.records.party.PartyDivisions; 034import com.echothree.model.jooq.server.records.party.PartyEntityTypes; 035import com.echothree.model.jooq.server.records.party.PartyGroups; 036import com.echothree.model.jooq.server.records.party.PartyRelationshipTypeDescriptions; 037import com.echothree.model.jooq.server.records.party.PartyRelationshipTypes; 038import com.echothree.model.jooq.server.records.party.PartyRelationships; 039import com.echothree.model.jooq.server.records.party.PartyStatuses; 040import com.echothree.model.jooq.server.records.party.PartyTypeAuditPolicies; 041import com.echothree.model.jooq.server.records.party.PartyTypeAuditPolicyDetails; 042import com.echothree.model.jooq.server.records.party.PartyTypeDescriptions; 043import com.echothree.model.jooq.server.records.party.PartyTypeLockoutPolicies; 044import com.echothree.model.jooq.server.records.party.PartyTypeLockoutPolicyDetails; 045import com.echothree.model.jooq.server.records.party.PartyTypePasswordStringPolicies; 046import com.echothree.model.jooq.server.records.party.PartyTypePasswordStringPolicyDetails; 047import com.echothree.model.jooq.server.records.party.PartyTypeUseTypeDescriptions; 048import com.echothree.model.jooq.server.records.party.PartyTypeUseTypes; 049import com.echothree.model.jooq.server.records.party.PartyTypeUses; 050import com.echothree.model.jooq.server.records.party.PartyTypes; 051import com.echothree.model.jooq.server.records.party.People; 052import com.echothree.model.jooq.server.records.party.PersonalTitleDetails; 053import com.echothree.model.jooq.server.records.party.PersonalTitles; 054import com.echothree.model.jooq.server.records.party.Profiles; 055import com.echothree.model.jooq.server.records.party.RoleTypeDescriptions; 056import com.echothree.model.jooq.server.records.party.RoleTypes; 057import com.echothree.model.jooq.server.records.party.TimeZoneDescriptions; 058import com.echothree.model.jooq.server.records.party.TimeZoneDetails; 059import com.echothree.model.jooq.server.records.party.TimeZones; 060import com.echothree.model.jooq.server.records.sequence.SequenceTypes; 061 062import org.jooq.ForeignKey; 063import org.jooq.TableField; 064import org.jooq.impl.DSL; 065import org.jooq.impl.Internal; 066import org.jooq.impl.QOM.ForeignKeyRule; 067 068/** 069 * Key definitions for the PartyForeign component. 070 */ 071public interface PartyForeignKeys { 072 public static final ForeignKey<BirthdayFormatDescriptions, BirthdayFormats> BIRTHDAY_FORMAT_DESCRIPTIONS_BIRTHDAY_FORMAT_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.BirthdayFormatDescriptions.BirthdayFormatDescriptions, DSL.name("bdyfd_bdyf_birthdayformatid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.BirthdayFormatDescriptions.BirthdayFormatDescriptions.BIRTHDAY_FORMAT }, KeyRegistry.BIRTHDAY_FORMATS_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.BirthdayFormats.BirthdayFormats.BIRTHDAY_FORMAT }, true, ForeignKeyRule.CASCADE, null); 073 public static final ForeignKey<BirthdayFormatDescriptions, Languages> BIRTHDAY_FORMAT_DESCRIPTIONS_LANGUAGE_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.BirthdayFormatDescriptions.BirthdayFormatDescriptions, DSL.name("bdyfd_lang_languageid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.BirthdayFormatDescriptions.BirthdayFormatDescriptions.LANGUAGE }, KeyRegistry.LANGUAGES_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.Languages.Languages.LANGUAGE }, true, ForeignKeyRule.CASCADE, null); 074 public static final ForeignKey<BirthdayFormatDetails, BirthdayFormats> BIRTHDAY_FORMAT_DETAILS_BIRTHDAY_FORMAT_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.BirthdayFormatDetails.BirthdayFormatDetails, DSL.name("bdyfdt_bdyf_birthdayformatid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.BirthdayFormatDetails.BirthdayFormatDetails.BIRTHDAY_FORMAT }, KeyRegistry.BIRTHDAY_FORMATS_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.BirthdayFormats.BirthdayFormats.BIRTHDAY_FORMAT }, true, ForeignKeyRule.CASCADE, null); 075 public static final ForeignKey<BirthdayFormats, BirthdayFormatDetails> BIRTHDAY_FORMATS_ACTIVE_DETAIL_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.BirthdayFormats.BirthdayFormats, DSL.name("bdyf_activedetailid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.BirthdayFormats.BirthdayFormats.ACTIVE_DETAIL }, KeyRegistry.BIRTHDAY_FORMAT_DETAILS_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.BirthdayFormatDetails.BirthdayFormatDetails.BIRTHDAY_FORMAT_DETAIL }, true, ForeignKeyRule.CASCADE, null); 076 public static final ForeignKey<BirthdayFormats, BirthdayFormatDetails> BIRTHDAY_FORMATS_LAST_DETAIL_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.BirthdayFormats.BirthdayFormats, DSL.name("bdyf_lastdetailid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.BirthdayFormats.BirthdayFormats.LAST_DETAIL }, KeyRegistry.BIRTHDAY_FORMAT_DETAILS_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.BirthdayFormatDetails.BirthdayFormatDetails.BIRTHDAY_FORMAT_DETAIL }, true, ForeignKeyRule.CASCADE, null); 077 public static final ForeignKey<DateTimeFormatDescriptions, DateTimeFormats> DATE_TIME_FORMAT_DESCRIPTIONS_DATE_TIME_FORMAT_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.DateTimeFormatDescriptions.DateTimeFormatDescriptions, DSL.name("dtfd_dtf_datetimeformatid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.DateTimeFormatDescriptions.DateTimeFormatDescriptions.DATE_TIME_FORMAT }, KeyRegistry.DATE_TIME_FORMATS_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.DateTimeFormats.DateTimeFormats.DATE_TIME_FORMAT }, true, ForeignKeyRule.CASCADE, null); 078 public static final ForeignKey<DateTimeFormatDescriptions, Languages> DATE_TIME_FORMAT_DESCRIPTIONS_LANGUAGE_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.DateTimeFormatDescriptions.DateTimeFormatDescriptions, DSL.name("dtfd_lang_languageid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.DateTimeFormatDescriptions.DateTimeFormatDescriptions.LANGUAGE }, KeyRegistry.LANGUAGES_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.Languages.Languages.LANGUAGE }, true, ForeignKeyRule.CASCADE, null); 079 public static final ForeignKey<DateTimeFormatDetails, DateTimeFormats> DATE_TIME_FORMAT_DETAILS_DATE_TIME_FORMAT_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.DateTimeFormatDetails.DateTimeFormatDetails, DSL.name("dtfdt_dtf_datetimeformatid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.DateTimeFormatDetails.DateTimeFormatDetails.DATE_TIME_FORMAT }, KeyRegistry.DATE_TIME_FORMATS_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.DateTimeFormats.DateTimeFormats.DATE_TIME_FORMAT }, true, ForeignKeyRule.CASCADE, null); 080 public static final ForeignKey<DateTimeFormats, DateTimeFormatDetails> DATE_TIME_FORMATS_ACTIVE_DETAIL_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.DateTimeFormats.DateTimeFormats, DSL.name("dtf_activedetailid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.DateTimeFormats.DateTimeFormats.ACTIVE_DETAIL }, KeyRegistry.DATE_TIME_FORMAT_DETAILS_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.DateTimeFormatDetails.DateTimeFormatDetails.DATE_TIME_FORMAT_DETAIL }, true, ForeignKeyRule.CASCADE, null); 081 public static final ForeignKey<DateTimeFormats, DateTimeFormatDetails> DATE_TIME_FORMATS_LAST_DETAIL_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.DateTimeFormats.DateTimeFormats, DSL.name("dtf_lastdetailid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.DateTimeFormats.DateTimeFormats.LAST_DETAIL }, KeyRegistry.DATE_TIME_FORMAT_DETAILS_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.DateTimeFormatDetails.DateTimeFormatDetails.DATE_TIME_FORMAT_DETAIL }, true, ForeignKeyRule.CASCADE, null); 082 public static final ForeignKey<GenderDescriptions, Genders> GENDER_DESCRIPTIONS_GENDER_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.GenderDescriptions.GenderDescriptions, DSL.name("gndrd_gndr_genderid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.GenderDescriptions.GenderDescriptions.GENDER }, KeyRegistry.GENDERS_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.Genders.Genders.GENDER }, true, ForeignKeyRule.CASCADE, null); 083 public static final ForeignKey<GenderDescriptions, Languages> GENDER_DESCRIPTIONS_LANGUAGE_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.GenderDescriptions.GenderDescriptions, DSL.name("gndrd_lang_languageid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.GenderDescriptions.GenderDescriptions.LANGUAGE }, KeyRegistry.LANGUAGES_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.Languages.Languages.LANGUAGE }, true, ForeignKeyRule.CASCADE, null); 084 public static final ForeignKey<GenderDetails, Genders> GENDER_DETAILS_GENDER_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.GenderDetails.GenderDetails, DSL.name("gndrdt_gndr_genderid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.GenderDetails.GenderDetails.GENDER }, KeyRegistry.GENDERS_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.Genders.Genders.GENDER }, true, ForeignKeyRule.CASCADE, null); 085 public static final ForeignKey<Genders, GenderDetails> GENDERS_ACTIVE_DETAIL_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.Genders.Genders, DSL.name("gndr_activedetailid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.Genders.Genders.ACTIVE_DETAIL }, KeyRegistry.GENDER_DETAILS_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.GenderDetails.GenderDetails.GENDER_DETAIL }, true, ForeignKeyRule.CASCADE, null); 086 public static final ForeignKey<Genders, GenderDetails> GENDERS_LAST_DETAIL_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.Genders.Genders, DSL.name("gndr_lastdetailid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.Genders.Genders.LAST_DETAIL }, KeyRegistry.GENDER_DETAILS_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.GenderDetails.GenderDetails.GENDER_DETAIL }, true, ForeignKeyRule.CASCADE, null); 087 public static final ForeignKey<LanguageDescriptions, Languages> LANGUAGE_DESCRIPTIONS_DESCRIPTION_LANGUAGE_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.LanguageDescriptions.LanguageDescriptions, DSL.name("langd_descriptionlanguageid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.LanguageDescriptions.LanguageDescriptions.DESCRIPTION_LANGUAGE }, KeyRegistry.LANGUAGES_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.Languages.Languages.LANGUAGE }, true, ForeignKeyRule.CASCADE, null); 088 public static final ForeignKey<LanguageDescriptions, Languages> LANGUAGE_DESCRIPTIONS_LANGUAGE_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.LanguageDescriptions.LanguageDescriptions, DSL.name("langd_lang_languageid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.LanguageDescriptions.LanguageDescriptions.LANGUAGE }, KeyRegistry.LANGUAGES_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.Languages.Languages.LANGUAGE }, true, ForeignKeyRule.CASCADE, null); 089 public static final ForeignKey<NameSuffixDetails, NameSuffixes> NAME_SUFFIX_DETAILS_NAME_SUFFIX_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.NameSuffixDetails.NameSuffixDetails, DSL.name("nsfxd_nsfx_namesuffixid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.NameSuffixDetails.NameSuffixDetails.NAME_SUFFIX }, KeyRegistry.NAME_SUFFIXES_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.NameSuffixes.NameSuffixes.NAME_SUFFIX }, true, ForeignKeyRule.CASCADE, null); 090 public static final ForeignKey<NameSuffixes, NameSuffixDetails> NAME_SUFFIXES_ACTIVE_DETAIL_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.NameSuffixes.NameSuffixes, DSL.name("nsfx_activedetailid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.NameSuffixes.NameSuffixes.ACTIVE_DETAIL }, KeyRegistry.NAME_SUFFIX_DETAILS_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.NameSuffixDetails.NameSuffixDetails.NAME_SUFFIX_DETAIL }, true, ForeignKeyRule.CASCADE, null); 091 public static final ForeignKey<NameSuffixes, NameSuffixDetails> NAME_SUFFIXES_LAST_DETAIL_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.NameSuffixes.NameSuffixes, DSL.name("nsfx_lastdetailid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.NameSuffixes.NameSuffixes.LAST_DETAIL }, KeyRegistry.NAME_SUFFIX_DETAILS_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.NameSuffixDetails.NameSuffixDetails.NAME_SUFFIX_DETAIL }, true, ForeignKeyRule.CASCADE, null); 092 public static final ForeignKey<Parties, PartyDetails> PARTIES_ACTIVE_DETAIL_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.Parties.Parties, DSL.name("par_activedetailid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.Parties.Parties.ACTIVE_DETAIL }, KeyRegistry.PARTY_DETAILS_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.PartyDetails.PartyDetails.PARTY_DETAIL }, true, ForeignKeyRule.CASCADE, null); 093 public static final ForeignKey<Parties, PartyDetails> PARTIES_LAST_DETAIL_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.Parties.Parties, DSL.name("par_lastdetailid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.Parties.Parties.LAST_DETAIL }, KeyRegistry.PARTY_DETAILS_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.PartyDetails.PartyDetails.PARTY_DETAIL }, true, ForeignKeyRule.CASCADE, null); 094 public static final ForeignKey<PartyAliases, Parties> PARTY_ALIASES_PARTY_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.PartyAliases.PartyAliases, DSL.name("pal_par_partyid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.PartyAliases.PartyAliases.PARTY }, KeyRegistry.PARTIES_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.Parties.Parties.PARTY }, true, ForeignKeyRule.CASCADE, null); 095 public static final ForeignKey<PartyAliases, PartyAliasTypes> PARTY_ALIASES_PARTY_ALIAS_TYPE_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.PartyAliases.PartyAliases, DSL.name("pal_pat_partyaliastypeid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.PartyAliases.PartyAliases.PARTY_ALIAS_TYPE }, KeyRegistry.PARTY_ALIAS_TYPES_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.PartyAliasTypes.PartyAliasTypes.PARTY_ALIAS_TYPE }, true, ForeignKeyRule.CASCADE, null); 096 public static final ForeignKey<PartyAliasTypeDescriptions, Languages> PARTY_ALIAS_TYPE_DESCRIPTIONS_LANGUAGE_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.PartyAliasTypeDescriptions.PartyAliasTypeDescriptions, DSL.name("patd_lang_languageid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.PartyAliasTypeDescriptions.PartyAliasTypeDescriptions.LANGUAGE }, KeyRegistry.LANGUAGES_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.Languages.Languages.LANGUAGE }, true, ForeignKeyRule.CASCADE, null); 097 public static final ForeignKey<PartyAliasTypeDescriptions, PartyAliasTypes> PARTY_ALIAS_TYPE_DESCRIPTIONS_PARTY_ALIAS_TYPE_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.PartyAliasTypeDescriptions.PartyAliasTypeDescriptions, DSL.name("patd_pat_partyaliastypeid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.PartyAliasTypeDescriptions.PartyAliasTypeDescriptions.PARTY_ALIAS_TYPE }, KeyRegistry.PARTY_ALIAS_TYPES_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.PartyAliasTypes.PartyAliasTypes.PARTY_ALIAS_TYPE }, true, ForeignKeyRule.CASCADE, null); 098 public static final ForeignKey<PartyAliasTypeDetails, PartyAliasTypes> PARTY_ALIAS_TYPE_DETAILS_PARTY_ALIAS_TYPE_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.PartyAliasTypeDetails.PartyAliasTypeDetails, DSL.name("patdt_pat_partyaliastypeid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.PartyAliasTypeDetails.PartyAliasTypeDetails.PARTY_ALIAS_TYPE }, KeyRegistry.PARTY_ALIAS_TYPES_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.PartyAliasTypes.PartyAliasTypes.PARTY_ALIAS_TYPE }, true, ForeignKeyRule.CASCADE, null); 099 public static final ForeignKey<PartyAliasTypeDetails, PartyTypes> PARTY_ALIAS_TYPE_DETAILS_PARTY_TYPE_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.PartyAliasTypeDetails.PartyAliasTypeDetails, DSL.name("patdt_ptyp_partytypeid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.PartyAliasTypeDetails.PartyAliasTypeDetails.PARTY_TYPE }, KeyRegistry.PARTY_TYPES_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.PartyTypes.PartyTypes.PARTY_TYPE }, true, ForeignKeyRule.CASCADE, null); 100 public static final ForeignKey<PartyAliasTypes, PartyAliasTypeDetails> PARTY_ALIAS_TYPES_ACTIVE_DETAIL_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.PartyAliasTypes.PartyAliasTypes, DSL.name("pat_activedetailid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.PartyAliasTypes.PartyAliasTypes.ACTIVE_DETAIL }, KeyRegistry.PARTY_ALIAS_TYPE_DETAILS_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.PartyAliasTypeDetails.PartyAliasTypeDetails.PARTY_ALIAS_TYPE_DETAIL }, true, ForeignKeyRule.CASCADE, null); 101 public static final ForeignKey<PartyAliasTypes, PartyAliasTypeDetails> PARTY_ALIAS_TYPES_LAST_DETAIL_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.PartyAliasTypes.PartyAliasTypes, DSL.name("pat_lastdetailid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.PartyAliasTypes.PartyAliasTypes.LAST_DETAIL }, KeyRegistry.PARTY_ALIAS_TYPE_DETAILS_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.PartyAliasTypeDetails.PartyAliasTypeDetails.PARTY_ALIAS_TYPE_DETAIL }, true, ForeignKeyRule.CASCADE, null); 102 public static final ForeignKey<PartyApplicationEditorUseDetails, ApplicationEditors> PARTY_APPLICATION_EDITOR_USE_DETAILS_APPLICATION_EDITOR_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.PartyApplicationEditorUseDetails.PartyApplicationEditorUseDetails, DSL.name("parappledtrusedt_appledtr_applicationeditorid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.PartyApplicationEditorUseDetails.PartyApplicationEditorUseDetails.APPLICATION_EDITOR }, KeyRegistry.APPLICATION_EDITORS_PK, new TableField[] { com.echothree.model.jooq.server.tables.core.ApplicationEditors.ApplicationEditors.APPLICATION_EDITOR }, true, ForeignKeyRule.CASCADE, null); 103 public static final ForeignKey<PartyApplicationEditorUseDetails, ApplicationEditorUses> PARTY_APPLICATION_EDITOR_USE_DETAILS_APPLICATION_EDITOR_USE_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.PartyApplicationEditorUseDetails.PartyApplicationEditorUseDetails, DSL.name("parappledtrusedt_appledtruse_applicationeditoruseid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.PartyApplicationEditorUseDetails.PartyApplicationEditorUseDetails.APPLICATION_EDITOR_USE }, KeyRegistry.APPLICATION_EDITOR_USES_PK, new TableField[] { com.echothree.model.jooq.server.tables.core.ApplicationEditorUses.ApplicationEditorUses.APPLICATION_EDITOR_USE }, true, ForeignKeyRule.CASCADE, null); 104 public static final ForeignKey<PartyApplicationEditorUseDetails, Parties> PARTY_APPLICATION_EDITOR_USE_DETAILS_PARTY_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.PartyApplicationEditorUseDetails.PartyApplicationEditorUseDetails, DSL.name("parappledtrusedt_par_partyid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.PartyApplicationEditorUseDetails.PartyApplicationEditorUseDetails.PARTY }, KeyRegistry.PARTIES_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.Parties.Parties.PARTY }, true, ForeignKeyRule.CASCADE, null); 105 public static final ForeignKey<PartyApplicationEditorUseDetails, PartyApplicationEditorUses> PARTY_APPLICATION_EDITOR_USE_DETAILS_PARTY_APPLICATION_EDITOR_USE_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.PartyApplicationEditorUseDetails.PartyApplicationEditorUseDetails, DSL.name("parappledtrusedt_parappledtruse_partyapplicationeditoruseid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.PartyApplicationEditorUseDetails.PartyApplicationEditorUseDetails.PARTY_APPLICATION_EDITOR_USE }, KeyRegistry.PARTY_APPLICATION_EDITOR_USES_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.PartyApplicationEditorUses.PartyApplicationEditorUses.PARTY_APPLICATION_EDITOR_USE }, true, ForeignKeyRule.CASCADE, null); 106 public static final ForeignKey<PartyApplicationEditorUses, PartyApplicationEditorUseDetails> PARTY_APPLICATION_EDITOR_USES_ACTIVE_DETAIL_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.PartyApplicationEditorUses.PartyApplicationEditorUses, DSL.name("parappledtruse_activedetailid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.PartyApplicationEditorUses.PartyApplicationEditorUses.ACTIVE_DETAIL }, KeyRegistry.PARTY_APPLICATION_EDITOR_USE_DETAILS_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.PartyApplicationEditorUseDetails.PartyApplicationEditorUseDetails.PARTY_APPLICATION_EDITOR_USE_DETAIL }, true, ForeignKeyRule.CASCADE, null); 107 public static final ForeignKey<PartyApplicationEditorUses, PartyApplicationEditorUseDetails> PARTY_APPLICATION_EDITOR_USES_LAST_DETAIL_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.PartyApplicationEditorUses.PartyApplicationEditorUses, DSL.name("parappledtruse_lastdetailid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.PartyApplicationEditorUses.PartyApplicationEditorUses.LAST_DETAIL }, KeyRegistry.PARTY_APPLICATION_EDITOR_USE_DETAILS_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.PartyApplicationEditorUseDetails.PartyApplicationEditorUseDetails.PARTY_APPLICATION_EDITOR_USE_DETAIL }, true, ForeignKeyRule.CASCADE, null); 108 public static final ForeignKey<PartyCompanies, Parties> PARTY_COMPANIES_PARTY_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.PartyCompanies.PartyCompanies, DSL.name("pcomp_par_partyid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.PartyCompanies.PartyCompanies.PARTY }, KeyRegistry.PARTIES_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.Parties.Parties.PARTY }, true, ForeignKeyRule.CASCADE, null); 109 public static final ForeignKey<PartyDepartments, Parties> PARTY_DEPARTMENTS_DIVISION_PARTY_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.PartyDepartments.PartyDepartments, DSL.name("pdept_divisionpartyid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.PartyDepartments.PartyDepartments.DIVISION_PARTY }, KeyRegistry.PARTIES_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.Parties.Parties.PARTY }, true, ForeignKeyRule.CASCADE, null); 110 public static final ForeignKey<PartyDepartments, Parties> PARTY_DEPARTMENTS_PARTY_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.PartyDepartments.PartyDepartments, DSL.name("pdept_par_partyid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.PartyDepartments.PartyDepartments.PARTY }, KeyRegistry.PARTIES_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.Parties.Parties.PARTY }, true, ForeignKeyRule.CASCADE, null); 111 public static final ForeignKey<PartyDetails, Parties> PARTY_DETAILS_PARTY_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.PartyDetails.PartyDetails, DSL.name("pardt_par_partyid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.PartyDetails.PartyDetails.PARTY }, KeyRegistry.PARTIES_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.Parties.Parties.PARTY }, true, ForeignKeyRule.CASCADE, null); 112 public static final ForeignKey<PartyDetails, Currencies> PARTY_DETAILS_PREFERRED_CURRENCY_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.PartyDetails.PartyDetails, DSL.name("pardt_preferredcurrencyid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.PartyDetails.PartyDetails.PREFERRED_CURRENCY }, KeyRegistry.CURRENCIES_PK, new TableField[] { com.echothree.model.jooq.server.tables.accounting.Currencies.Currencies.CURRENCY }, true, ForeignKeyRule.CASCADE, null); 113 public static final ForeignKey<PartyDetails, DateTimeFormats> PARTY_DETAILS_PREFERRED_DATE_TIME_FORMAT_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.PartyDetails.PartyDetails, DSL.name("pardt_preferreddatetimeformatid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.PartyDetails.PartyDetails.PREFERRED_DATE_TIME_FORMAT }, KeyRegistry.DATE_TIME_FORMATS_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.DateTimeFormats.DateTimeFormats.DATE_TIME_FORMAT }, true, ForeignKeyRule.CASCADE, null); 114 public static final ForeignKey<PartyDetails, Languages> PARTY_DETAILS_PREFERRED_LANGUAGE_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.PartyDetails.PartyDetails, DSL.name("pardt_preferredlanguageid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.PartyDetails.PartyDetails.PREFERRED_LANGUAGE }, KeyRegistry.LANGUAGES_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.Languages.Languages.LANGUAGE }, true, ForeignKeyRule.CASCADE, null); 115 public static final ForeignKey<PartyDetails, TimeZones> PARTY_DETAILS_PREFERRED_TIME_ZONE_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.PartyDetails.PartyDetails, DSL.name("pardt_preferredtimezoneid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.PartyDetails.PartyDetails.PREFERRED_TIME_ZONE }, KeyRegistry.TIME_ZONES_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.TimeZones.TimeZones.TIME_ZONE }, true, ForeignKeyRule.CASCADE, null); 116 public static final ForeignKey<PartyDetails, PartyTypes> PARTY_DETAILS_PARTY_TYPE_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.PartyDetails.PartyDetails, DSL.name("pardt_ptyp_partytypeid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.PartyDetails.PartyDetails.PARTY_TYPE }, KeyRegistry.PARTY_TYPES_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.PartyTypes.PartyTypes.PARTY_TYPE }, true, ForeignKeyRule.CASCADE, null); 117 public static final ForeignKey<PartyDivisions, Parties> PARTY_DIVISIONS_COMPANY_PARTY_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.PartyDivisions.PartyDivisions, DSL.name("pdiv_companypartyid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.PartyDivisions.PartyDivisions.COMPANY_PARTY }, KeyRegistry.PARTIES_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.Parties.Parties.PARTY }, true, ForeignKeyRule.CASCADE, null); 118 public static final ForeignKey<PartyDivisions, Parties> PARTY_DIVISIONS_PARTY_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.PartyDivisions.PartyDivisions, DSL.name("pdiv_par_partyid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.PartyDivisions.PartyDivisions.PARTY }, KeyRegistry.PARTIES_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.Parties.Parties.PARTY }, true, ForeignKeyRule.CASCADE, null); 119 public static final ForeignKey<PartyEntityTypes, EntityTypes> PARTY_ENTITY_TYPES_ENTITY_TYPE_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.PartyEntityTypes.PartyEntityTypes, DSL.name("pent_ent_entitytypeid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.PartyEntityTypes.PartyEntityTypes.ENTITY_TYPE }, KeyRegistry.ENTITY_TYPES_PK, new TableField[] { com.echothree.model.jooq.server.tables.core.EntityTypes.EntityTypes.ENTITY_TYPE }, true, ForeignKeyRule.CASCADE, null); 120 public static final ForeignKey<PartyEntityTypes, Parties> PARTY_ENTITY_TYPES_PARTY_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.PartyEntityTypes.PartyEntityTypes, DSL.name("pent_par_partyid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.PartyEntityTypes.PartyEntityTypes.PARTY }, KeyRegistry.PARTIES_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.Parties.Parties.PARTY }, true, ForeignKeyRule.CASCADE, null); 121 public static final ForeignKey<PartyGroups, Parties> PARTY_GROUPS_PARTY_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.PartyGroups.PartyGroups, DSL.name("pgp_par_partyid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.PartyGroups.PartyGroups.PARTY }, KeyRegistry.PARTIES_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.Parties.Parties.PARTY }, true, ForeignKeyRule.CASCADE, null); 122 public static final ForeignKey<PartyRelationships, Parties> PARTY_RELATIONSHIPS_FROM_PARTY_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.PartyRelationships.PartyRelationships, DSL.name("prel_frompartyid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.PartyRelationships.PartyRelationships.FROM_PARTY }, KeyRegistry.PARTIES_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.Parties.Parties.PARTY }, true, ForeignKeyRule.CASCADE, null); 123 public static final ForeignKey<PartyRelationships, RoleTypes> PARTY_RELATIONSHIPS_FROM_ROLE_TYPE_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.PartyRelationships.PartyRelationships, DSL.name("prel_fromroletypeid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.PartyRelationships.PartyRelationships.FROM_ROLE_TYPE }, KeyRegistry.ROLE_TYPES_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.RoleTypes.RoleTypes.ROLE_TYPE }, true, ForeignKeyRule.CASCADE, null); 124 public static final ForeignKey<PartyRelationships, PartyRelationshipTypes> PARTY_RELATIONSHIPS_PARTY_RELATIONSHIP_TYPE_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.PartyRelationships.PartyRelationships, DSL.name("prel_prt_partyrelationshiptypeid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.PartyRelationships.PartyRelationships.PARTY_RELATIONSHIP_TYPE }, KeyRegistry.PARTY_RELATIONSHIP_TYPES_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.PartyRelationshipTypes.PartyRelationshipTypes.PARTY_RELATIONSHIP_TYPE }, true, ForeignKeyRule.CASCADE, null); 125 public static final ForeignKey<PartyRelationships, Parties> PARTY_RELATIONSHIPS_TO_PARTY_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.PartyRelationships.PartyRelationships, DSL.name("prel_topartyid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.PartyRelationships.PartyRelationships.TO_PARTY }, KeyRegistry.PARTIES_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.Parties.Parties.PARTY }, true, ForeignKeyRule.CASCADE, null); 126 public static final ForeignKey<PartyRelationships, RoleTypes> PARTY_RELATIONSHIPS_TO_ROLE_TYPE_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.PartyRelationships.PartyRelationships, DSL.name("prel_toroletypeid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.PartyRelationships.PartyRelationships.TO_ROLE_TYPE }, KeyRegistry.ROLE_TYPES_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.RoleTypes.RoleTypes.ROLE_TYPE }, true, ForeignKeyRule.CASCADE, null); 127 public static final ForeignKey<PartyRelationshipTypeDescriptions, Languages> PARTY_RELATIONSHIP_TYPE_DESCRIPTIONS_LANGUAGE_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.PartyRelationshipTypeDescriptions.PartyRelationshipTypeDescriptions, DSL.name("prtd_lang_languageid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.PartyRelationshipTypeDescriptions.PartyRelationshipTypeDescriptions.LANGUAGE }, KeyRegistry.LANGUAGES_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.Languages.Languages.LANGUAGE }, true, ForeignKeyRule.CASCADE, null); 128 public static final ForeignKey<PartyRelationshipTypeDescriptions, PartyRelationshipTypes> PARTY_RELATIONSHIP_TYPE_DESCRIPTIONS_PARTY_RELATIONSHIP_TYPE_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.PartyRelationshipTypeDescriptions.PartyRelationshipTypeDescriptions, DSL.name("prtd_prt_partyrelationshiptypeid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.PartyRelationshipTypeDescriptions.PartyRelationshipTypeDescriptions.PARTY_RELATIONSHIP_TYPE }, KeyRegistry.PARTY_RELATIONSHIP_TYPES_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.PartyRelationshipTypes.PartyRelationshipTypes.PARTY_RELATIONSHIP_TYPE }, true, ForeignKeyRule.CASCADE, null); 129 public static final ForeignKey<PartyStatuses, Parties> PARTY_STATUSES_PARTY_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.PartyStatuses.PartyStatuses, DSL.name("parst_par_partyid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.PartyStatuses.PartyStatuses.PARTY }, KeyRegistry.PARTIES_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.Parties.Parties.PARTY }, true, ForeignKeyRule.CASCADE, null); 130 public static final ForeignKey<PartyTypeAuditPolicies, PartyTypeAuditPolicyDetails> PARTY_TYPE_AUDIT_POLICIES_ACTIVE_DETAIL_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.PartyTypeAuditPolicies.PartyTypeAuditPolicies, DSL.name("ptypap_activedetailid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.PartyTypeAuditPolicies.PartyTypeAuditPolicies.ACTIVE_DETAIL }, KeyRegistry.PARTY_TYPE_AUDIT_POLICY_DETAILS_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.PartyTypeAuditPolicyDetails.PartyTypeAuditPolicyDetails.PARTY_TYPE_AUDIT_POLICY_DETAIL }, true, ForeignKeyRule.CASCADE, null); 131 public static final ForeignKey<PartyTypeAuditPolicies, PartyTypeAuditPolicyDetails> PARTY_TYPE_AUDIT_POLICIES_LAST_DETAIL_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.PartyTypeAuditPolicies.PartyTypeAuditPolicies, DSL.name("ptypap_lastdetailid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.PartyTypeAuditPolicies.PartyTypeAuditPolicies.LAST_DETAIL }, KeyRegistry.PARTY_TYPE_AUDIT_POLICY_DETAILS_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.PartyTypeAuditPolicyDetails.PartyTypeAuditPolicyDetails.PARTY_TYPE_AUDIT_POLICY_DETAIL }, true, ForeignKeyRule.CASCADE, null); 132 public static final ForeignKey<PartyTypeAuditPolicyDetails, PartyTypes> PARTY_TYPE_AUDIT_POLICY_DETAILS_PARTY_TYPE_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.PartyTypeAuditPolicyDetails.PartyTypeAuditPolicyDetails, DSL.name("ptypapdt_ptyp_partytypeid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.PartyTypeAuditPolicyDetails.PartyTypeAuditPolicyDetails.PARTY_TYPE }, KeyRegistry.PARTY_TYPES_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.PartyTypes.PartyTypes.PARTY_TYPE }, true, ForeignKeyRule.CASCADE, null); 133 public static final ForeignKey<PartyTypeAuditPolicyDetails, PartyTypeAuditPolicies> PARTY_TYPE_AUDIT_POLICY_DETAILS_PARTY_TYPE_AUDIT_POLICY_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.PartyTypeAuditPolicyDetails.PartyTypeAuditPolicyDetails, DSL.name("ptypapdt_ptypap_partytypeauditpolicyid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.PartyTypeAuditPolicyDetails.PartyTypeAuditPolicyDetails.PARTY_TYPE_AUDIT_POLICY }, KeyRegistry.PARTY_TYPE_AUDIT_POLICIES_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.PartyTypeAuditPolicies.PartyTypeAuditPolicies.PARTY_TYPE_AUDIT_POLICY }, true, ForeignKeyRule.CASCADE, null); 134 public static final ForeignKey<PartyTypeDescriptions, Languages> PARTY_TYPE_DESCRIPTIONS_LANGUAGE_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.PartyTypeDescriptions.PartyTypeDescriptions, DSL.name("ptypd_lang_languageid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.PartyTypeDescriptions.PartyTypeDescriptions.LANGUAGE }, KeyRegistry.LANGUAGES_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.Languages.Languages.LANGUAGE }, true, ForeignKeyRule.CASCADE, null); 135 public static final ForeignKey<PartyTypeDescriptions, PartyTypes> PARTY_TYPE_DESCRIPTIONS_PARTY_TYPE_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.PartyTypeDescriptions.PartyTypeDescriptions, DSL.name("ptypd_ptyp_partytypeid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.PartyTypeDescriptions.PartyTypeDescriptions.PARTY_TYPE }, KeyRegistry.PARTY_TYPES_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.PartyTypes.PartyTypes.PARTY_TYPE }, true, ForeignKeyRule.CASCADE, null); 136 public static final ForeignKey<PartyTypeLockoutPolicies, PartyTypeLockoutPolicyDetails> PARTY_TYPE_LOCKOUT_POLICIES_ACTIVE_DETAIL_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.PartyTypeLockoutPolicies.PartyTypeLockoutPolicies, DSL.name("ptyplp_activedetailid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.PartyTypeLockoutPolicies.PartyTypeLockoutPolicies.ACTIVE_DETAIL }, KeyRegistry.PARTY_TYPE_LOCKOUT_POLICY_DETAILS_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.PartyTypeLockoutPolicyDetails.PartyTypeLockoutPolicyDetails.PARTY_TYPE_LOCKOUT_POLICY_DETAIL }, true, ForeignKeyRule.CASCADE, null); 137 public static final ForeignKey<PartyTypeLockoutPolicies, PartyTypeLockoutPolicyDetails> PARTY_TYPE_LOCKOUT_POLICIES_LAST_DETAIL_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.PartyTypeLockoutPolicies.PartyTypeLockoutPolicies, DSL.name("ptyplp_lastdetailid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.PartyTypeLockoutPolicies.PartyTypeLockoutPolicies.LAST_DETAIL }, KeyRegistry.PARTY_TYPE_LOCKOUT_POLICY_DETAILS_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.PartyTypeLockoutPolicyDetails.PartyTypeLockoutPolicyDetails.PARTY_TYPE_LOCKOUT_POLICY_DETAIL }, true, ForeignKeyRule.CASCADE, null); 138 public static final ForeignKey<PartyTypeLockoutPolicyDetails, PartyTypes> PARTY_TYPE_LOCKOUT_POLICY_DETAILS_PARTY_TYPE_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.PartyTypeLockoutPolicyDetails.PartyTypeLockoutPolicyDetails, DSL.name("ptyplpdt_ptyp_partytypeid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.PartyTypeLockoutPolicyDetails.PartyTypeLockoutPolicyDetails.PARTY_TYPE }, KeyRegistry.PARTY_TYPES_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.PartyTypes.PartyTypes.PARTY_TYPE }, true, ForeignKeyRule.CASCADE, null); 139 public static final ForeignKey<PartyTypeLockoutPolicyDetails, PartyTypeLockoutPolicies> PARTY_TYPE_LOCKOUT_POLICY_DETAILS_PARTY_TYPE_LOCKOUT_POLICY_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.PartyTypeLockoutPolicyDetails.PartyTypeLockoutPolicyDetails, DSL.name("ptyplpdt_ptyplp_partytypelockoutpolicyid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.PartyTypeLockoutPolicyDetails.PartyTypeLockoutPolicyDetails.PARTY_TYPE_LOCKOUT_POLICY }, KeyRegistry.PARTY_TYPE_LOCKOUT_POLICIES_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.PartyTypeLockoutPolicies.PartyTypeLockoutPolicies.PARTY_TYPE_LOCKOUT_POLICY }, true, ForeignKeyRule.CASCADE, null); 140 public static final ForeignKey<PartyTypePasswordStringPolicies, PartyTypePasswordStringPolicyDetails> PARTY_TYPE_PASSWORD_STRING_POLICIES_ACTIVE_DETAIL_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.PartyTypePasswordStringPolicies.PartyTypePasswordStringPolicies, DSL.name("ptyppsp_activedetailid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.PartyTypePasswordStringPolicies.PartyTypePasswordStringPolicies.ACTIVE_DETAIL }, KeyRegistry.PARTY_TYPE_PASSWORD_STRING_POLICY_DETAILS_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.PartyTypePasswordStringPolicyDetails.PartyTypePasswordStringPolicyDetails.PARTY_TYPE_PASSWORD_STRING_POLICY_DETAIL }, true, ForeignKeyRule.CASCADE, null); 141 public static final ForeignKey<PartyTypePasswordStringPolicies, PartyTypePasswordStringPolicyDetails> PARTY_TYPE_PASSWORD_STRING_POLICIES_LAST_DETAIL_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.PartyTypePasswordStringPolicies.PartyTypePasswordStringPolicies, DSL.name("ptyppsp_lastdetailid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.PartyTypePasswordStringPolicies.PartyTypePasswordStringPolicies.LAST_DETAIL }, KeyRegistry.PARTY_TYPE_PASSWORD_STRING_POLICY_DETAILS_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.PartyTypePasswordStringPolicyDetails.PartyTypePasswordStringPolicyDetails.PARTY_TYPE_PASSWORD_STRING_POLICY_DETAIL }, true, ForeignKeyRule.CASCADE, null); 142 public static final ForeignKey<PartyTypePasswordStringPolicyDetails, PartyTypes> PARTY_TYPE_PASSWORD_STRING_POLICY_DETAILS_PARTY_TYPE_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.PartyTypePasswordStringPolicyDetails.PartyTypePasswordStringPolicyDetails, DSL.name("ptyppspdt_ptyp_partytypeid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.PartyTypePasswordStringPolicyDetails.PartyTypePasswordStringPolicyDetails.PARTY_TYPE }, KeyRegistry.PARTY_TYPES_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.PartyTypes.PartyTypes.PARTY_TYPE }, true, ForeignKeyRule.CASCADE, null); 143 public static final ForeignKey<PartyTypePasswordStringPolicyDetails, PartyTypePasswordStringPolicies> PARTY_TYPE_PASSWORD_STRING_POLICY_DETAILS_PARTY_TYPE_PASSWORD_STRING_POLICY_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.PartyTypePasswordStringPolicyDetails.PartyTypePasswordStringPolicyDetails, DSL.name("ptyppspdt_ptyppsp_partytypepasswordstringpolicyid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.PartyTypePasswordStringPolicyDetails.PartyTypePasswordStringPolicyDetails.PARTY_TYPE_PASSWORD_STRING_POLICY }, KeyRegistry.PARTY_TYPE_PASSWORD_STRING_POLICIES_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.PartyTypePasswordStringPolicies.PartyTypePasswordStringPolicies.PARTY_TYPE_PASSWORD_STRING_POLICY }, true, ForeignKeyRule.CASCADE, null); 144 public static final ForeignKey<PartyTypes, SequenceTypes> PARTY_TYPES_BILLING_ACCOUNT_SEQUENCE_TYPE_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.PartyTypes.PartyTypes, DSL.name("ptyp_billingaccountsequencetypeid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.PartyTypes.PartyTypes.BILLING_ACCOUNT_SEQUENCE_TYPE }, KeyRegistry.SEQUENCE_TYPES_PK, new TableField[] { com.echothree.model.jooq.server.tables.sequence.SequenceTypes.SequenceTypes.SEQUENCE_TYPE }, true, ForeignKeyRule.CASCADE, null); 145 public static final ForeignKey<PartyTypes, PartyTypes> PARTY_TYPES_PARENT_PARTY_TYPE_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.PartyTypes.PartyTypes, DSL.name("ptyp_parentpartytypeid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.PartyTypes.PartyTypes.PARENT_PARTY_TYPE }, KeyRegistry.PARTY_TYPES_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.PartyTypes.PartyTypes.PARTY_TYPE }, true, ForeignKeyRule.CASCADE, null); 146 public static final ForeignKey<PartyTypeUses, PartyTypes> PARTY_TYPE_USES_PARTY_TYPE_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.PartyTypeUses.PartyTypeUses, DSL.name("ptypu_ptyp_partytypeid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.PartyTypeUses.PartyTypeUses.PARTY_TYPE }, KeyRegistry.PARTY_TYPES_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.PartyTypes.PartyTypes.PARTY_TYPE }, true, ForeignKeyRule.CASCADE, null); 147 public static final ForeignKey<PartyTypeUses, PartyTypeUseTypes> PARTY_TYPE_USES_PARTY_TYPE_USE_TYPE_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.PartyTypeUses.PartyTypeUses, DSL.name("ptypu_ptyput_partytypeusetypeid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.PartyTypeUses.PartyTypeUses.PARTY_TYPE_USE_TYPE }, KeyRegistry.PARTY_TYPE_USE_TYPES_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.PartyTypeUseTypes.PartyTypeUseTypes.PARTY_TYPE_USE_TYPE }, true, ForeignKeyRule.CASCADE, null); 148 public static final ForeignKey<PartyTypeUseTypeDescriptions, Languages> PARTY_TYPE_USE_TYPE_DESCRIPTIONS_LANGUAGE_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.PartyTypeUseTypeDescriptions.PartyTypeUseTypeDescriptions, DSL.name("ptyputd_lang_languageid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.PartyTypeUseTypeDescriptions.PartyTypeUseTypeDescriptions.LANGUAGE }, KeyRegistry.LANGUAGES_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.Languages.Languages.LANGUAGE }, true, ForeignKeyRule.CASCADE, null); 149 public static final ForeignKey<PartyTypeUseTypeDescriptions, PartyTypeUseTypes> PARTY_TYPE_USE_TYPE_DESCRIPTIONS_PARTY_TYPE_USE_TYPE_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.PartyTypeUseTypeDescriptions.PartyTypeUseTypeDescriptions, DSL.name("ptyputd_ptyput_partytypeusetypeid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.PartyTypeUseTypeDescriptions.PartyTypeUseTypeDescriptions.PARTY_TYPE_USE_TYPE }, KeyRegistry.PARTY_TYPE_USE_TYPES_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.PartyTypeUseTypes.PartyTypeUseTypes.PARTY_TYPE_USE_TYPE }, true, ForeignKeyRule.CASCADE, null); 150 public static final ForeignKey<People, NameSuffixes> PEOPLE_NAME_SUFFIX_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.People.People, DSL.name("peop_nsfx_namesuffixid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.People.People.NAME_SUFFIX }, KeyRegistry.NAME_SUFFIXES_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.NameSuffixes.NameSuffixes.NAME_SUFFIX }, true, ForeignKeyRule.CASCADE, null); 151 public static final ForeignKey<People, Parties> PEOPLE_PARTY_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.People.People, DSL.name("peop_par_partyid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.People.People.PARTY }, KeyRegistry.PARTIES_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.Parties.Parties.PARTY }, true, ForeignKeyRule.CASCADE, null); 152 public static final ForeignKey<People, PersonalTitles> PEOPLE_PERSONAL_TITLE_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.People.People, DSL.name("peop_pert_personaltitleid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.People.People.PERSONAL_TITLE }, KeyRegistry.PERSONAL_TITLES_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.PersonalTitles.PersonalTitles.PERSONAL_TITLE }, true, ForeignKeyRule.CASCADE, null); 153 public static final ForeignKey<PersonalTitleDetails, PersonalTitles> PERSONAL_TITLE_DETAILS_PERSONAL_TITLE_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.PersonalTitleDetails.PersonalTitleDetails, DSL.name("pertd_pert_personaltitleid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.PersonalTitleDetails.PersonalTitleDetails.PERSONAL_TITLE }, KeyRegistry.PERSONAL_TITLES_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.PersonalTitles.PersonalTitles.PERSONAL_TITLE }, true, ForeignKeyRule.CASCADE, null); 154 public static final ForeignKey<PersonalTitles, PersonalTitleDetails> PERSONAL_TITLES_ACTIVE_DETAIL_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.PersonalTitles.PersonalTitles, DSL.name("pert_activedetailid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.PersonalTitles.PersonalTitles.ACTIVE_DETAIL }, KeyRegistry.PERSONAL_TITLE_DETAILS_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.PersonalTitleDetails.PersonalTitleDetails.PERSONAL_TITLE_DETAIL }, true, ForeignKeyRule.CASCADE, null); 155 public static final ForeignKey<PersonalTitles, PersonalTitleDetails> PERSONAL_TITLES_LAST_DETAIL_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.PersonalTitles.PersonalTitles, DSL.name("pert_lastdetailid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.PersonalTitles.PersonalTitles.LAST_DETAIL }, KeyRegistry.PERSONAL_TITLE_DETAILS_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.PersonalTitleDetails.PersonalTitleDetails.PERSONAL_TITLE_DETAIL }, true, ForeignKeyRule.CASCADE, null); 156 public static final ForeignKey<Profiles, BirthdayFormats> PROFILES_BIRTHDAY_FORMAT_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.Profiles.Profiles, DSL.name("prfl_bdyf_birthdayformatid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.Profiles.Profiles.BIRTHDAY_FORMAT }, KeyRegistry.BIRTHDAY_FORMATS_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.BirthdayFormats.BirthdayFormats.BIRTHDAY_FORMAT }, true, ForeignKeyRule.CASCADE, null); 157 public static final ForeignKey<Profiles, MimeTypes> PROFILES_BIO_MIME_TYPE_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.Profiles.Profiles, DSL.name("prfl_biomimetypeid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.Profiles.Profiles.BIO_MIME_TYPE }, KeyRegistry.MIME_TYPES_PK, new TableField[] { com.echothree.model.jooq.server.tables.core.MimeTypes.MimeTypes.MIME_TYPE }, true, ForeignKeyRule.CASCADE, null); 158 public static final ForeignKey<Profiles, Genders> PROFILES_GENDER_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.Profiles.Profiles, DSL.name("prfl_gndr_genderid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.Profiles.Profiles.GENDER }, KeyRegistry.GENDERS_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.Genders.Genders.GENDER }, true, ForeignKeyRule.CASCADE, null); 159 public static final ForeignKey<Profiles, Icons> PROFILES_ICON_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.Profiles.Profiles, DSL.name("prfl_icn_iconid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.Profiles.Profiles.ICON }, KeyRegistry.ICONS_PK, new TableField[] { com.echothree.model.jooq.server.tables.icon.Icons.Icons.ICON }, true, ForeignKeyRule.CASCADE, null); 160 public static final ForeignKey<Profiles, Parties> PROFILES_PARTY_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.Profiles.Profiles, DSL.name("prfl_par_partyid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.Profiles.Profiles.PARTY }, KeyRegistry.PARTIES_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.Parties.Parties.PARTY }, true, ForeignKeyRule.CASCADE, null); 161 public static final ForeignKey<Profiles, MimeTypes> PROFILES_SIGNATURE_MIME_TYPE_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.Profiles.Profiles, DSL.name("prfl_signaturemimetypeid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.Profiles.Profiles.SIGNATURE_MIME_TYPE }, KeyRegistry.MIME_TYPES_PK, new TableField[] { com.echothree.model.jooq.server.tables.core.MimeTypes.MimeTypes.MIME_TYPE }, true, ForeignKeyRule.CASCADE, null); 162 public static final ForeignKey<RoleTypeDescriptions, Languages> ROLE_TYPE_DESCRIPTIONS_LANGUAGE_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.RoleTypeDescriptions.RoleTypeDescriptions, DSL.name("rtypd_lang_languageid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.RoleTypeDescriptions.RoleTypeDescriptions.LANGUAGE }, KeyRegistry.LANGUAGES_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.Languages.Languages.LANGUAGE }, true, ForeignKeyRule.CASCADE, null); 163 public static final ForeignKey<RoleTypeDescriptions, RoleTypes> ROLE_TYPE_DESCRIPTIONS_ROLE_TYPE_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.RoleTypeDescriptions.RoleTypeDescriptions, DSL.name("rtypd_rtyp_roletypeid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.RoleTypeDescriptions.RoleTypeDescriptions.ROLE_TYPE }, KeyRegistry.ROLE_TYPES_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.RoleTypes.RoleTypes.ROLE_TYPE }, true, ForeignKeyRule.CASCADE, null); 164 public static final ForeignKey<RoleTypes, RoleTypes> ROLE_TYPES_PARENT_ROLE_TYPE_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.RoleTypes.RoleTypes, DSL.name("rtyp_parentroletypeid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.RoleTypes.RoleTypes.PARENT_ROLE_TYPE }, KeyRegistry.ROLE_TYPES_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.RoleTypes.RoleTypes.ROLE_TYPE }, true, ForeignKeyRule.CASCADE, null); 165 public static final ForeignKey<TimeZoneDescriptions, Languages> TIME_ZONE_DESCRIPTIONS_LANGUAGE_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.TimeZoneDescriptions.TimeZoneDescriptions, DSL.name("tzd_lang_languageid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.TimeZoneDescriptions.TimeZoneDescriptions.LANGUAGE }, KeyRegistry.LANGUAGES_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.Languages.Languages.LANGUAGE }, true, ForeignKeyRule.CASCADE, null); 166 public static final ForeignKey<TimeZoneDescriptions, TimeZones> TIME_ZONE_DESCRIPTIONS_TIME_ZONE_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.TimeZoneDescriptions.TimeZoneDescriptions, DSL.name("tzd_tz_timezoneid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.TimeZoneDescriptions.TimeZoneDescriptions.TIME_ZONE }, KeyRegistry.TIME_ZONES_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.TimeZones.TimeZones.TIME_ZONE }, true, ForeignKeyRule.CASCADE, null); 167 public static final ForeignKey<TimeZoneDetails, TimeZones> TIME_ZONE_DETAILS_TIME_ZONE_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.TimeZoneDetails.TimeZoneDetails, DSL.name("tzdt_tz_timezoneid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.TimeZoneDetails.TimeZoneDetails.TIME_ZONE }, KeyRegistry.TIME_ZONES_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.TimeZones.TimeZones.TIME_ZONE }, true, ForeignKeyRule.CASCADE, null); 168 public static final ForeignKey<TimeZones, TimeZoneDetails> TIME_ZONES_ACTIVE_DETAIL_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.TimeZones.TimeZones, DSL.name("tz_activedetailid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.TimeZones.TimeZones.ACTIVE_DETAIL }, KeyRegistry.TIME_ZONE_DETAILS_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.TimeZoneDetails.TimeZoneDetails.TIME_ZONE_DETAIL }, true, ForeignKeyRule.CASCADE, null); 169 public static final ForeignKey<TimeZones, TimeZoneDetails> TIME_ZONES_LAST_DETAIL_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.party.TimeZones.TimeZones, DSL.name("tz_lastdetailid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.party.TimeZones.TimeZones.LAST_DETAIL }, KeyRegistry.TIME_ZONE_DETAILS_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.TimeZoneDetails.TimeZoneDetails.TIME_ZONE_DETAIL }, true, ForeignKeyRule.CASCADE, null); 170}