001package com.echothree.model.jooq.server.keys.content; 002 003import com.echothree.model.jooq.server.KeyRegistry; 004import com.echothree.model.jooq.server.records.accounting.Currencies; 005import com.echothree.model.jooq.server.records.content.ContentCatalogDescriptions; 006import com.echothree.model.jooq.server.records.content.ContentCatalogDetails; 007import com.echothree.model.jooq.server.records.content.ContentCatalogItemFixedPrices; 008import com.echothree.model.jooq.server.records.content.ContentCatalogItemVariablePrices; 009import com.echothree.model.jooq.server.records.content.ContentCatalogItems; 010import com.echothree.model.jooq.server.records.content.ContentCatalogs; 011import com.echothree.model.jooq.server.records.content.ContentCategories; 012import com.echothree.model.jooq.server.records.content.ContentCategoryDescriptions; 013import com.echothree.model.jooq.server.records.content.ContentCategoryDetails; 014import com.echothree.model.jooq.server.records.content.ContentCategoryItems; 015import com.echothree.model.jooq.server.records.content.ContentCollectionDescriptions; 016import com.echothree.model.jooq.server.records.content.ContentCollectionDetails; 017import com.echothree.model.jooq.server.records.content.ContentCollections; 018import com.echothree.model.jooq.server.records.content.ContentForumDetails; 019import com.echothree.model.jooq.server.records.content.ContentForums; 020import com.echothree.model.jooq.server.records.content.ContentPageAreaBlobs; 021import com.echothree.model.jooq.server.records.content.ContentPageAreaClobs; 022import com.echothree.model.jooq.server.records.content.ContentPageAreaDetails; 023import com.echothree.model.jooq.server.records.content.ContentPageAreaStrings; 024import com.echothree.model.jooq.server.records.content.ContentPageAreaTypeDescriptions; 025import com.echothree.model.jooq.server.records.content.ContentPageAreaTypes; 026import com.echothree.model.jooq.server.records.content.ContentPageAreaUrls; 027import com.echothree.model.jooq.server.records.content.ContentPageAreas; 028import com.echothree.model.jooq.server.records.content.ContentPageDescriptions; 029import com.echothree.model.jooq.server.records.content.ContentPageDetails; 030import com.echothree.model.jooq.server.records.content.ContentPageLayoutAreaDescriptions; 031import com.echothree.model.jooq.server.records.content.ContentPageLayoutAreas; 032import com.echothree.model.jooq.server.records.content.ContentPageLayoutDescriptions; 033import com.echothree.model.jooq.server.records.content.ContentPageLayoutDetails; 034import com.echothree.model.jooq.server.records.content.ContentPageLayouts; 035import com.echothree.model.jooq.server.records.content.ContentPages; 036import com.echothree.model.jooq.server.records.content.ContentSectionDescriptions; 037import com.echothree.model.jooq.server.records.content.ContentSectionDetails; 038import com.echothree.model.jooq.server.records.content.ContentSections; 039import com.echothree.model.jooq.server.records.content.ContentWebAddressDescriptions; 040import com.echothree.model.jooq.server.records.content.ContentWebAddressDetails; 041import com.echothree.model.jooq.server.records.content.ContentWebAddressServers; 042import com.echothree.model.jooq.server.records.content.ContentWebAddresses; 043import com.echothree.model.jooq.server.records.core.MimeTypes; 044import com.echothree.model.jooq.server.records.core.Servers; 045import com.echothree.model.jooq.server.records.forum.Forums; 046import com.echothree.model.jooq.server.records.inventory.InventoryConditions; 047import com.echothree.model.jooq.server.records.item.Items; 048import com.echothree.model.jooq.server.records.offer.OfferUses; 049import com.echothree.model.jooq.server.records.party.Languages; 050import com.echothree.model.jooq.server.records.selector.Selectors; 051import com.echothree.model.jooq.server.records.uom.UnitOfMeasureTypes; 052 053import org.jooq.ForeignKey; 054import org.jooq.TableField; 055import org.jooq.impl.DSL; 056import org.jooq.impl.Internal; 057import org.jooq.impl.QOM.ForeignKeyRule; 058 059/** 060 * Key definitions for the ContentForeign component. 061 */ 062public interface ContentForeignKeys { 063 public static final ForeignKey<ContentCatalogDescriptions, ContentCatalogs> CONTENT_CATALOG_DESCRIPTIONS_CONTENT_CATALOG_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.content.ContentCatalogDescriptions.ContentCatalogDescriptions, DSL.name("cntctd_cntct_contentcatalogid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.content.ContentCatalogDescriptions.ContentCatalogDescriptions.CONTENT_CATALOG }, KeyRegistry.CONTENT_CATALOGS_PK, new TableField[] { com.echothree.model.jooq.server.tables.content.ContentCatalogs.ContentCatalogs.CONTENT_CATALOG }, true, ForeignKeyRule.CASCADE, null); 064 public static final ForeignKey<ContentCatalogDescriptions, Languages> CONTENT_CATALOG_DESCRIPTIONS_LANGUAGE_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.content.ContentCatalogDescriptions.ContentCatalogDescriptions, DSL.name("cntctd_lang_languageid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.content.ContentCatalogDescriptions.ContentCatalogDescriptions.LANGUAGE }, KeyRegistry.LANGUAGES_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.Languages.Languages.LANGUAGE }, true, ForeignKeyRule.CASCADE, null); 065 public static final ForeignKey<ContentCatalogDetails, ContentCollections> CONTENT_CATALOG_DETAILS_CONTENT_COLLECTION_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.content.ContentCatalogDetails.ContentCatalogDetails, DSL.name("cntctdt_cntc_contentcollectionid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.content.ContentCatalogDetails.ContentCatalogDetails.CONTENT_COLLECTION }, KeyRegistry.CONTENT_COLLECTIONS_PK, new TableField[] { com.echothree.model.jooq.server.tables.content.ContentCollections.ContentCollections.CONTENT_COLLECTION }, true, ForeignKeyRule.CASCADE, null); 066 public static final ForeignKey<ContentCatalogDetails, ContentCatalogs> CONTENT_CATALOG_DETAILS_CONTENT_CATALOG_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.content.ContentCatalogDetails.ContentCatalogDetails, DSL.name("cntctdt_cntct_contentcatalogid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.content.ContentCatalogDetails.ContentCatalogDetails.CONTENT_CATALOG }, KeyRegistry.CONTENT_CATALOGS_PK, new TableField[] { com.echothree.model.jooq.server.tables.content.ContentCatalogs.ContentCatalogs.CONTENT_CATALOG }, true, ForeignKeyRule.CASCADE, null); 067 public static final ForeignKey<ContentCatalogDetails, OfferUses> CONTENT_CATALOG_DETAILS_DEFAULT_OFFER_USE_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.content.ContentCatalogDetails.ContentCatalogDetails, DSL.name("cntctdt_defaultofferuseid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.content.ContentCatalogDetails.ContentCatalogDetails.DEFAULT_OFFER_USE }, KeyRegistry.OFFER_USES_PK, new TableField[] { com.echothree.model.jooq.server.tables.offer.OfferUses.OfferUses.OFFER_USE }, true, ForeignKeyRule.CASCADE, null); 068 public static final ForeignKey<ContentCatalogItemFixedPrices, ContentCatalogItems> CONTENT_CATALOG_ITEM_FIXED_PRICES_CONTENT_CATALOG_ITEM_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.content.ContentCatalogItemFixedPrices.ContentCatalogItemFixedPrices, DSL.name("cntctifp_cntcti_contentcatalogitemid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.content.ContentCatalogItemFixedPrices.ContentCatalogItemFixedPrices.CONTENT_CATALOG_ITEM }, KeyRegistry.CONTENT_CATALOG_ITEMS_PK, new TableField[] { com.echothree.model.jooq.server.tables.content.ContentCatalogItems.ContentCatalogItems.CONTENT_CATALOG_ITEM }, true, ForeignKeyRule.CASCADE, null); 069 public static final ForeignKey<ContentCatalogItems, ContentCatalogs> CONTENT_CATALOG_ITEMS_CONTENT_CATALOG_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.content.ContentCatalogItems.ContentCatalogItems, DSL.name("cntcti_cntct_contentcatalogid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.content.ContentCatalogItems.ContentCatalogItems.CONTENT_CATALOG }, KeyRegistry.CONTENT_CATALOGS_PK, new TableField[] { com.echothree.model.jooq.server.tables.content.ContentCatalogs.ContentCatalogs.CONTENT_CATALOG }, true, ForeignKeyRule.CASCADE, null); 070 public static final ForeignKey<ContentCatalogItems, Currencies> CONTENT_CATALOG_ITEMS_CURRENCY_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.content.ContentCatalogItems.ContentCatalogItems, DSL.name("cntcti_cur_currencyid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.content.ContentCatalogItems.ContentCatalogItems.CURRENCY }, KeyRegistry.CURRENCIES_PK, new TableField[] { com.echothree.model.jooq.server.tables.accounting.Currencies.Currencies.CURRENCY }, true, ForeignKeyRule.CASCADE, null); 071 public static final ForeignKey<ContentCatalogItems, InventoryConditions> CONTENT_CATALOG_ITEMS_INVENTORY_CONDITION_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.content.ContentCatalogItems.ContentCatalogItems, DSL.name("cntcti_invcon_inventoryconditionid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.content.ContentCatalogItems.ContentCatalogItems.INVENTORY_CONDITION }, KeyRegistry.INVENTORY_CONDITIONS_PK, new TableField[] { com.echothree.model.jooq.server.tables.inventory.InventoryConditions.InventoryConditions.INVENTORY_CONDITION }, true, ForeignKeyRule.CASCADE, null); 072 public static final ForeignKey<ContentCatalogItems, Items> CONTENT_CATALOG_ITEMS_ITEM_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.content.ContentCatalogItems.ContentCatalogItems, DSL.name("cntcti_itm_itemid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.content.ContentCatalogItems.ContentCatalogItems.ITEM }, KeyRegistry.ITEMS_PK, new TableField[] { com.echothree.model.jooq.server.tables.item.Items.Items.ITEM }, true, ForeignKeyRule.CASCADE, null); 073 public static final ForeignKey<ContentCatalogItems, UnitOfMeasureTypes> CONTENT_CATALOG_ITEMS_UNIT_OF_MEASURE_TYPE_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.content.ContentCatalogItems.ContentCatalogItems, DSL.name("cntcti_uomt_unitofmeasuretypeid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.content.ContentCatalogItems.ContentCatalogItems.UNIT_OF_MEASURE_TYPE }, KeyRegistry.UNIT_OF_MEASURE_TYPES_PK, new TableField[] { com.echothree.model.jooq.server.tables.uom.UnitOfMeasureTypes.UnitOfMeasureTypes.UNIT_OF_MEASURE_TYPE }, true, ForeignKeyRule.CASCADE, null); 074 public static final ForeignKey<ContentCatalogItemVariablePrices, ContentCatalogItems> CONTENT_CATALOG_ITEM_VARIABLE_PRICES_CONTENT_CATALOG_ITEM_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.content.ContentCatalogItemVariablePrices.ContentCatalogItemVariablePrices, DSL.name("cntctivp_cntcti_contentcatalogitemid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.content.ContentCatalogItemVariablePrices.ContentCatalogItemVariablePrices.CONTENT_CATALOG_ITEM }, KeyRegistry.CONTENT_CATALOG_ITEMS_PK, new TableField[] { com.echothree.model.jooq.server.tables.content.ContentCatalogItems.ContentCatalogItems.CONTENT_CATALOG_ITEM }, true, ForeignKeyRule.CASCADE, null); 075 public static final ForeignKey<ContentCatalogs, ContentCatalogDetails> CONTENT_CATALOGS_ACTIVE_DETAIL_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.content.ContentCatalogs.ContentCatalogs, DSL.name("cntct_activedetailid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.content.ContentCatalogs.ContentCatalogs.ACTIVE_DETAIL }, KeyRegistry.CONTENT_CATALOG_DETAILS_PK, new TableField[] { com.echothree.model.jooq.server.tables.content.ContentCatalogDetails.ContentCatalogDetails.CONTENT_CATALOG_DETAIL }, true, ForeignKeyRule.CASCADE, null); 076 public static final ForeignKey<ContentCatalogs, ContentCatalogDetails> CONTENT_CATALOGS_LAST_DETAIL_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.content.ContentCatalogs.ContentCatalogs, DSL.name("cntct_lastdetailid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.content.ContentCatalogs.ContentCatalogs.LAST_DETAIL }, KeyRegistry.CONTENT_CATALOG_DETAILS_PK, new TableField[] { com.echothree.model.jooq.server.tables.content.ContentCatalogDetails.ContentCatalogDetails.CONTENT_CATALOG_DETAIL }, true, ForeignKeyRule.CASCADE, null); 077 public static final ForeignKey<ContentCategories, ContentCategoryDetails> CONTENT_CATEGORIES_ACTIVE_DETAIL_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.content.ContentCategories.ContentCategories, DSL.name("cntcg_activedetailid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.content.ContentCategories.ContentCategories.ACTIVE_DETAIL }, KeyRegistry.CONTENT_CATEGORY_DETAILS_PK, new TableField[] { com.echothree.model.jooq.server.tables.content.ContentCategoryDetails.ContentCategoryDetails.CONTENT_CATEGORY_DETAIL }, true, ForeignKeyRule.CASCADE, null); 078 public static final ForeignKey<ContentCategories, ContentCategoryDetails> CONTENT_CATEGORIES_LAST_DETAIL_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.content.ContentCategories.ContentCategories, DSL.name("cntcg_lastdetailid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.content.ContentCategories.ContentCategories.LAST_DETAIL }, KeyRegistry.CONTENT_CATEGORY_DETAILS_PK, new TableField[] { com.echothree.model.jooq.server.tables.content.ContentCategoryDetails.ContentCategoryDetails.CONTENT_CATEGORY_DETAIL }, true, ForeignKeyRule.CASCADE, null); 079 public static final ForeignKey<ContentCategoryDescriptions, ContentCategories> CONTENT_CATEGORY_DESCRIPTIONS_CONTENT_CATEGORY_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.content.ContentCategoryDescriptions.ContentCategoryDescriptions, DSL.name("cntcgd_cntcg_contentcategoryid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.content.ContentCategoryDescriptions.ContentCategoryDescriptions.CONTENT_CATEGORY }, KeyRegistry.CONTENT_CATEGORIES_PK, new TableField[] { com.echothree.model.jooq.server.tables.content.ContentCategories.ContentCategories.CONTENT_CATEGORY }, true, ForeignKeyRule.CASCADE, null); 080 public static final ForeignKey<ContentCategoryDescriptions, Languages> CONTENT_CATEGORY_DESCRIPTIONS_LANGUAGE_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.content.ContentCategoryDescriptions.ContentCategoryDescriptions, DSL.name("cntcgd_lang_languageid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.content.ContentCategoryDescriptions.ContentCategoryDescriptions.LANGUAGE }, KeyRegistry.LANGUAGES_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.Languages.Languages.LANGUAGE }, true, ForeignKeyRule.CASCADE, null); 081 public static final ForeignKey<ContentCategoryDetails, ContentCategories> CONTENT_CATEGORY_DETAILS_CONTENT_CATEGORY_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.content.ContentCategoryDetails.ContentCategoryDetails, DSL.name("cntcgdt_cntcg_contentcategoryid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.content.ContentCategoryDetails.ContentCategoryDetails.CONTENT_CATEGORY }, KeyRegistry.CONTENT_CATEGORIES_PK, new TableField[] { com.echothree.model.jooq.server.tables.content.ContentCategories.ContentCategories.CONTENT_CATEGORY }, true, ForeignKeyRule.CASCADE, null); 082 public static final ForeignKey<ContentCategoryDetails, ContentCatalogs> CONTENT_CATEGORY_DETAILS_CONTENT_CATALOG_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.content.ContentCategoryDetails.ContentCategoryDetails, DSL.name("cntcgdt_cntct_contentcatalogid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.content.ContentCategoryDetails.ContentCategoryDetails.CONTENT_CATALOG }, KeyRegistry.CONTENT_CATALOGS_PK, new TableField[] { com.echothree.model.jooq.server.tables.content.ContentCatalogs.ContentCatalogs.CONTENT_CATALOG }, true, ForeignKeyRule.CASCADE, null); 083 public static final ForeignKey<ContentCategoryDetails, Selectors> CONTENT_CATEGORY_DETAILS_CONTENT_CATEGORY_ITEM_SELECTOR_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.content.ContentCategoryDetails.ContentCategoryDetails, DSL.name("cntcgdt_contentcategoryitemselectorid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.content.ContentCategoryDetails.ContentCategoryDetails.CONTENT_CATEGORY_ITEM_SELECTOR }, KeyRegistry.SELECTORS_PK, new TableField[] { com.echothree.model.jooq.server.tables.selector.Selectors.Selectors.SELECTOR }, true, ForeignKeyRule.CASCADE, null); 084 public static final ForeignKey<ContentCategoryDetails, OfferUses> CONTENT_CATEGORY_DETAILS_DEFAULT_OFFER_USE_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.content.ContentCategoryDetails.ContentCategoryDetails, DSL.name("cntcgdt_defaultofferuseid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.content.ContentCategoryDetails.ContentCategoryDetails.DEFAULT_OFFER_USE }, KeyRegistry.OFFER_USES_PK, new TableField[] { com.echothree.model.jooq.server.tables.offer.OfferUses.OfferUses.OFFER_USE }, true, ForeignKeyRule.CASCADE, null); 085 public static final ForeignKey<ContentCategoryDetails, ContentCategories> CONTENT_CATEGORY_DETAILS_PARENT_CONTENT_CATEGORY_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.content.ContentCategoryDetails.ContentCategoryDetails, DSL.name("cntcgdt_parentcontentcategoryid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.content.ContentCategoryDetails.ContentCategoryDetails.PARENT_CONTENT_CATEGORY }, KeyRegistry.CONTENT_CATEGORIES_PK, new TableField[] { com.echothree.model.jooq.server.tables.content.ContentCategories.ContentCategories.CONTENT_CATEGORY }, true, ForeignKeyRule.CASCADE, null); 086 public static final ForeignKey<ContentCategoryItems, ContentCategories> CONTENT_CATEGORY_ITEMS_CONTENT_CATEGORY_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.content.ContentCategoryItems.ContentCategoryItems, DSL.name("cntcgi_cntcg_contentcategoryid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.content.ContentCategoryItems.ContentCategoryItems.CONTENT_CATEGORY }, KeyRegistry.CONTENT_CATEGORIES_PK, new TableField[] { com.echothree.model.jooq.server.tables.content.ContentCategories.ContentCategories.CONTENT_CATEGORY }, true, ForeignKeyRule.CASCADE, null); 087 public static final ForeignKey<ContentCategoryItems, ContentCatalogItems> CONTENT_CATEGORY_ITEMS_CONTENT_CATALOG_ITEM_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.content.ContentCategoryItems.ContentCategoryItems, DSL.name("cntcgi_cntcti_contentcatalogitemid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.content.ContentCategoryItems.ContentCategoryItems.CONTENT_CATALOG_ITEM }, KeyRegistry.CONTENT_CATALOG_ITEMS_PK, new TableField[] { com.echothree.model.jooq.server.tables.content.ContentCatalogItems.ContentCatalogItems.CONTENT_CATALOG_ITEM }, true, ForeignKeyRule.CASCADE, null); 088 public static final ForeignKey<ContentCollectionDescriptions, ContentCollections> CONTENT_COLLECTION_DESCRIPTIONS_CONTENT_COLLECTION_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.content.ContentCollectionDescriptions.ContentCollectionDescriptions, DSL.name("cntcd_cntc_contentcollectionid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.content.ContentCollectionDescriptions.ContentCollectionDescriptions.CONTENT_COLLECTION }, KeyRegistry.CONTENT_COLLECTIONS_PK, new TableField[] { com.echothree.model.jooq.server.tables.content.ContentCollections.ContentCollections.CONTENT_COLLECTION }, true, ForeignKeyRule.CASCADE, null); 089 public static final ForeignKey<ContentCollectionDescriptions, Languages> CONTENT_COLLECTION_DESCRIPTIONS_LANGUAGE_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.content.ContentCollectionDescriptions.ContentCollectionDescriptions, DSL.name("cntcd_lang_languageid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.content.ContentCollectionDescriptions.ContentCollectionDescriptions.LANGUAGE }, KeyRegistry.LANGUAGES_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.Languages.Languages.LANGUAGE }, true, ForeignKeyRule.CASCADE, null); 090 public static final ForeignKey<ContentCollectionDetails, ContentCollections> CONTENT_COLLECTION_DETAILS_CONTENT_COLLECTION_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.content.ContentCollectionDetails.ContentCollectionDetails, DSL.name("cntcdt_cntc_contentcollectionid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.content.ContentCollectionDetails.ContentCollectionDetails.CONTENT_COLLECTION }, KeyRegistry.CONTENT_COLLECTIONS_PK, new TableField[] { com.echothree.model.jooq.server.tables.content.ContentCollections.ContentCollections.CONTENT_COLLECTION }, true, ForeignKeyRule.CASCADE, null); 091 public static final ForeignKey<ContentCollectionDetails, OfferUses> CONTENT_COLLECTION_DETAILS_DEFAULT_OFFER_USE_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.content.ContentCollectionDetails.ContentCollectionDetails, DSL.name("cntcdt_defaultofferuseid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.content.ContentCollectionDetails.ContentCollectionDetails.DEFAULT_OFFER_USE }, KeyRegistry.OFFER_USES_PK, new TableField[] { com.echothree.model.jooq.server.tables.offer.OfferUses.OfferUses.OFFER_USE }, true, ForeignKeyRule.CASCADE, null); 092 public static final ForeignKey<ContentCollections, ContentCollectionDetails> CONTENT_COLLECTIONS_ACTIVE_DETAIL_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.content.ContentCollections.ContentCollections, DSL.name("cntc_activedetailid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.content.ContentCollections.ContentCollections.ACTIVE_DETAIL }, KeyRegistry.CONTENT_COLLECTION_DETAILS_PK, new TableField[] { com.echothree.model.jooq.server.tables.content.ContentCollectionDetails.ContentCollectionDetails.CONTENT_COLLECTION_DETAIL }, true, ForeignKeyRule.CASCADE, null); 093 public static final ForeignKey<ContentCollections, ContentCollectionDetails> CONTENT_COLLECTIONS_LAST_DETAIL_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.content.ContentCollections.ContentCollections, DSL.name("cntc_lastdetailid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.content.ContentCollections.ContentCollections.LAST_DETAIL }, KeyRegistry.CONTENT_COLLECTION_DETAILS_PK, new TableField[] { com.echothree.model.jooq.server.tables.content.ContentCollectionDetails.ContentCollectionDetails.CONTENT_COLLECTION_DETAIL }, true, ForeignKeyRule.CASCADE, null); 094 public static final ForeignKey<ContentForumDetails, ContentCollections> CONTENT_FORUM_DETAILS_CONTENT_COLLECTION_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.content.ContentForumDetails.ContentForumDetails, DSL.name("cntfrmdt_cntc_contentcollectionid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.content.ContentForumDetails.ContentForumDetails.CONTENT_COLLECTION }, KeyRegistry.CONTENT_COLLECTIONS_PK, new TableField[] { com.echothree.model.jooq.server.tables.content.ContentCollections.ContentCollections.CONTENT_COLLECTION }, true, ForeignKeyRule.CASCADE, null); 095 public static final ForeignKey<ContentForumDetails, ContentForums> CONTENT_FORUM_DETAILS_CONTENT_FORUM_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.content.ContentForumDetails.ContentForumDetails, DSL.name("cntfrmdt_cntfrm_contentforumid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.content.ContentForumDetails.ContentForumDetails.CONTENT_FORUM }, KeyRegistry.CONTENT_FORUMS_PK, new TableField[] { com.echothree.model.jooq.server.tables.content.ContentForums.ContentForums.CONTENT_FORUM }, true, ForeignKeyRule.CASCADE, null); 096 public static final ForeignKey<ContentForumDetails, Forums> CONTENT_FORUM_DETAILS_FORUM_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.content.ContentForumDetails.ContentForumDetails, DSL.name("cntfrmdt_frm_forumid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.content.ContentForumDetails.ContentForumDetails.FORUM }, KeyRegistry.FORUMS_PK, new TableField[] { com.echothree.model.jooq.server.tables.forum.Forums.Forums.FORUM }, true, ForeignKeyRule.CASCADE, null); 097 public static final ForeignKey<ContentForums, ContentForumDetails> CONTENT_FORUMS_ACTIVE_DETAIL_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.content.ContentForums.ContentForums, DSL.name("cntfrm_activedetailid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.content.ContentForums.ContentForums.ACTIVE_DETAIL }, KeyRegistry.CONTENT_FORUM_DETAILS_PK, new TableField[] { com.echothree.model.jooq.server.tables.content.ContentForumDetails.ContentForumDetails.CONTENT_FORUM_DETAIL }, true, ForeignKeyRule.CASCADE, null); 098 public static final ForeignKey<ContentForums, ContentForumDetails> CONTENT_FORUMS_LAST_DETAIL_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.content.ContentForums.ContentForums, DSL.name("cntfrm_lastdetailid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.content.ContentForums.ContentForums.LAST_DETAIL }, KeyRegistry.CONTENT_FORUM_DETAILS_PK, new TableField[] { com.echothree.model.jooq.server.tables.content.ContentForumDetails.ContentForumDetails.CONTENT_FORUM_DETAIL }, true, ForeignKeyRule.CASCADE, null); 099 public static final ForeignKey<ContentPageAreaBlobs, ContentPageAreaDetails> CONTENT_PAGE_AREA_BLOBS_CONTENT_PAGE_AREA_DETAIL_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.content.ContentPageAreaBlobs.ContentPageAreaBlobs, DSL.name("cntpab_cntpad_contentpageareadetailid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.content.ContentPageAreaBlobs.ContentPageAreaBlobs.CONTENT_PAGE_AREA_DETAIL }, KeyRegistry.CONTENT_PAGE_AREA_DETAILS_PK, new TableField[] { com.echothree.model.jooq.server.tables.content.ContentPageAreaDetails.ContentPageAreaDetails.CONTENT_PAGE_AREA_DETAIL }, true, ForeignKeyRule.CASCADE, null); 100 public static final ForeignKey<ContentPageAreaClobs, ContentPageAreaDetails> CONTENT_PAGE_AREA_CLOBS_CONTENT_PAGE_AREA_DETAIL_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.content.ContentPageAreaClobs.ContentPageAreaClobs, DSL.name("cntpac_cntpad_contentpageareadetailid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.content.ContentPageAreaClobs.ContentPageAreaClobs.CONTENT_PAGE_AREA_DETAIL }, KeyRegistry.CONTENT_PAGE_AREA_DETAILS_PK, new TableField[] { com.echothree.model.jooq.server.tables.content.ContentPageAreaDetails.ContentPageAreaDetails.CONTENT_PAGE_AREA_DETAIL }, true, ForeignKeyRule.CASCADE, null); 101 public static final ForeignKey<ContentPageAreaDetails, ContentPages> CONTENT_PAGE_AREA_DETAILS_CONTENT_PAGE_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.content.ContentPageAreaDetails.ContentPageAreaDetails, DSL.name("cntpad_cntp_contentpageid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.content.ContentPageAreaDetails.ContentPageAreaDetails.CONTENT_PAGE }, KeyRegistry.CONTENT_PAGES_PK, new TableField[] { com.echothree.model.jooq.server.tables.content.ContentPages.ContentPages.CONTENT_PAGE }, true, ForeignKeyRule.CASCADE, null); 102 public static final ForeignKey<ContentPageAreaDetails, ContentPageAreas> CONTENT_PAGE_AREA_DETAILS_CONTENT_PAGE_AREA_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.content.ContentPageAreaDetails.ContentPageAreaDetails, DSL.name("cntpad_cntpa_contentpageareaid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.content.ContentPageAreaDetails.ContentPageAreaDetails.CONTENT_PAGE_AREA }, KeyRegistry.CONTENT_PAGE_AREAS_PK, new TableField[] { com.echothree.model.jooq.server.tables.content.ContentPageAreas.ContentPageAreas.CONTENT_PAGE_AREA }, true, ForeignKeyRule.CASCADE, null); 103 public static final ForeignKey<ContentPageAreaDetails, ContentPageLayoutAreas> CONTENT_PAGE_AREA_DETAILS_CONTENT_PAGE_LAYOUT_AREA_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.content.ContentPageAreaDetails.ContentPageAreaDetails, DSL.name("cntpad_cntpla_contentpagelayoutareaid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.content.ContentPageAreaDetails.ContentPageAreaDetails.CONTENT_PAGE_LAYOUT_AREA }, KeyRegistry.CONTENT_PAGE_LAYOUT_AREAS_PK, new TableField[] { com.echothree.model.jooq.server.tables.content.ContentPageLayoutAreas.ContentPageLayoutAreas.CONTENT_PAGE_LAYOUT_AREA }, true, ForeignKeyRule.CASCADE, null); 104 public static final ForeignKey<ContentPageAreaDetails, Languages> CONTENT_PAGE_AREA_DETAILS_LANGUAGE_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.content.ContentPageAreaDetails.ContentPageAreaDetails, DSL.name("cntpad_lang_languageid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.content.ContentPageAreaDetails.ContentPageAreaDetails.LANGUAGE }, KeyRegistry.LANGUAGES_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.Languages.Languages.LANGUAGE }, true, ForeignKeyRule.CASCADE, null); 105 public static final ForeignKey<ContentPageAreaDetails, MimeTypes> CONTENT_PAGE_AREA_DETAILS_MIME_TYPE_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.content.ContentPageAreaDetails.ContentPageAreaDetails, DSL.name("cntpad_mtyp_mimetypeid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.content.ContentPageAreaDetails.ContentPageAreaDetails.MIME_TYPE }, KeyRegistry.MIME_TYPES_PK, new TableField[] { com.echothree.model.jooq.server.tables.core.MimeTypes.MimeTypes.MIME_TYPE }, true, ForeignKeyRule.CASCADE, null); 106 public static final ForeignKey<ContentPageAreas, ContentPageAreaDetails> CONTENT_PAGE_AREAS_ACTIVE_DETAIL_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.content.ContentPageAreas.ContentPageAreas, DSL.name("cntpa_activedetailid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.content.ContentPageAreas.ContentPageAreas.ACTIVE_DETAIL }, KeyRegistry.CONTENT_PAGE_AREA_DETAILS_PK, new TableField[] { com.echothree.model.jooq.server.tables.content.ContentPageAreaDetails.ContentPageAreaDetails.CONTENT_PAGE_AREA_DETAIL }, true, ForeignKeyRule.CASCADE, null); 107 public static final ForeignKey<ContentPageAreas, ContentPageAreaDetails> CONTENT_PAGE_AREAS_LAST_DETAIL_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.content.ContentPageAreas.ContentPageAreas, DSL.name("cntpa_lastdetailid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.content.ContentPageAreas.ContentPageAreas.LAST_DETAIL }, KeyRegistry.CONTENT_PAGE_AREA_DETAILS_PK, new TableField[] { com.echothree.model.jooq.server.tables.content.ContentPageAreaDetails.ContentPageAreaDetails.CONTENT_PAGE_AREA_DETAIL }, true, ForeignKeyRule.CASCADE, null); 108 public static final ForeignKey<ContentPageAreaStrings, ContentPageAreaDetails> CONTENT_PAGE_AREA_STRINGS_CONTENT_PAGE_AREA_DETAIL_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.content.ContentPageAreaStrings.ContentPageAreaStrings, DSL.name("cntpas_cntpad_contentpageareadetailid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.content.ContentPageAreaStrings.ContentPageAreaStrings.CONTENT_PAGE_AREA_DETAIL }, KeyRegistry.CONTENT_PAGE_AREA_DETAILS_PK, new TableField[] { com.echothree.model.jooq.server.tables.content.ContentPageAreaDetails.ContentPageAreaDetails.CONTENT_PAGE_AREA_DETAIL }, true, ForeignKeyRule.CASCADE, null); 109 public static final ForeignKey<ContentPageAreaTypeDescriptions, ContentPageAreaTypes> CONTENT_PAGE_AREA_TYPE_DESCRIPTIONS_CONTENT_PAGE_AREA_TYPE_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.content.ContentPageAreaTypeDescriptions.ContentPageAreaTypeDescriptions, DSL.name("cntpatd_cntpat_contentpageareatypeid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.content.ContentPageAreaTypeDescriptions.ContentPageAreaTypeDescriptions.CONTENT_PAGE_AREA_TYPE }, KeyRegistry.CONTENT_PAGE_AREA_TYPES_PK, new TableField[] { com.echothree.model.jooq.server.tables.content.ContentPageAreaTypes.ContentPageAreaTypes.CONTENT_PAGE_AREA_TYPE }, true, ForeignKeyRule.CASCADE, null); 110 public static final ForeignKey<ContentPageAreaTypeDescriptions, Languages> CONTENT_PAGE_AREA_TYPE_DESCRIPTIONS_LANGUAGE_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.content.ContentPageAreaTypeDescriptions.ContentPageAreaTypeDescriptions, DSL.name("cntpatd_lang_languageid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.content.ContentPageAreaTypeDescriptions.ContentPageAreaTypeDescriptions.LANGUAGE }, KeyRegistry.LANGUAGES_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.Languages.Languages.LANGUAGE }, true, ForeignKeyRule.CASCADE, null); 111 public static final ForeignKey<ContentPageAreaUrls, ContentPageAreaDetails> CONTENT_PAGE_AREA_URLS_CONTENT_PAGE_AREA_DETAIL_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.content.ContentPageAreaUrls.ContentPageAreaUrls, DSL.name("cntpau_cntpad_contentpageareadetailid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.content.ContentPageAreaUrls.ContentPageAreaUrls.CONTENT_PAGE_AREA_DETAIL }, KeyRegistry.CONTENT_PAGE_AREA_DETAILS_PK, new TableField[] { com.echothree.model.jooq.server.tables.content.ContentPageAreaDetails.ContentPageAreaDetails.CONTENT_PAGE_AREA_DETAIL }, true, ForeignKeyRule.CASCADE, null); 112 public static final ForeignKey<ContentPageDescriptions, ContentPages> CONTENT_PAGE_DESCRIPTIONS_CONTENT_PAGE_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.content.ContentPageDescriptions.ContentPageDescriptions, DSL.name("cntpd_cntp_contentpageid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.content.ContentPageDescriptions.ContentPageDescriptions.CONTENT_PAGE }, KeyRegistry.CONTENT_PAGES_PK, new TableField[] { com.echothree.model.jooq.server.tables.content.ContentPages.ContentPages.CONTENT_PAGE }, true, ForeignKeyRule.CASCADE, null); 113 public static final ForeignKey<ContentPageDescriptions, Languages> CONTENT_PAGE_DESCRIPTIONS_LANGUAGE_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.content.ContentPageDescriptions.ContentPageDescriptions, DSL.name("cntpd_lang_languageid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.content.ContentPageDescriptions.ContentPageDescriptions.LANGUAGE }, KeyRegistry.LANGUAGES_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.Languages.Languages.LANGUAGE }, true, ForeignKeyRule.CASCADE, null); 114 public static final ForeignKey<ContentPageDetails, ContentPages> CONTENT_PAGE_DETAILS_CONTENT_PAGE_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.content.ContentPageDetails.ContentPageDetails, DSL.name("cntpdt_cntp_contentpageid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.content.ContentPageDetails.ContentPageDetails.CONTENT_PAGE }, KeyRegistry.CONTENT_PAGES_PK, new TableField[] { com.echothree.model.jooq.server.tables.content.ContentPages.ContentPages.CONTENT_PAGE }, true, ForeignKeyRule.CASCADE, null); 115 public static final ForeignKey<ContentPageDetails, ContentPageLayouts> CONTENT_PAGE_DETAILS_CONTENT_PAGE_LAYOUT_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.content.ContentPageDetails.ContentPageDetails, DSL.name("cntpdt_cntpl_contentpagelayoutid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.content.ContentPageDetails.ContentPageDetails.CONTENT_PAGE_LAYOUT }, KeyRegistry.CONTENT_PAGE_LAYOUTS_PK, new TableField[] { com.echothree.model.jooq.server.tables.content.ContentPageLayouts.ContentPageLayouts.CONTENT_PAGE_LAYOUT }, true, ForeignKeyRule.CASCADE, null); 116 public static final ForeignKey<ContentPageDetails, ContentSections> CONTENT_PAGE_DETAILS_CONTENT_SECTION_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.content.ContentPageDetails.ContentPageDetails, DSL.name("cntpdt_cnts_contentsectionid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.content.ContentPageDetails.ContentPageDetails.CONTENT_SECTION }, KeyRegistry.CONTENT_SECTIONS_PK, new TableField[] { com.echothree.model.jooq.server.tables.content.ContentSections.ContentSections.CONTENT_SECTION }, true, ForeignKeyRule.CASCADE, null); 117 public static final ForeignKey<ContentPageLayoutAreaDescriptions, ContentPageLayoutAreas> CONTENT_PAGE_LAYOUT_AREA_DESCRIPTIONS_CONTENT_PAGE_LAYOUT_AREA_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.content.ContentPageLayoutAreaDescriptions.ContentPageLayoutAreaDescriptions, DSL.name("cntplad_cntpla_contentpagelayoutareaid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.content.ContentPageLayoutAreaDescriptions.ContentPageLayoutAreaDescriptions.CONTENT_PAGE_LAYOUT_AREA }, KeyRegistry.CONTENT_PAGE_LAYOUT_AREAS_PK, new TableField[] { com.echothree.model.jooq.server.tables.content.ContentPageLayoutAreas.ContentPageLayoutAreas.CONTENT_PAGE_LAYOUT_AREA }, true, ForeignKeyRule.CASCADE, null); 118 public static final ForeignKey<ContentPageLayoutAreaDescriptions, Languages> CONTENT_PAGE_LAYOUT_AREA_DESCRIPTIONS_LANGUAGE_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.content.ContentPageLayoutAreaDescriptions.ContentPageLayoutAreaDescriptions, DSL.name("cntplad_lang_languageid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.content.ContentPageLayoutAreaDescriptions.ContentPageLayoutAreaDescriptions.LANGUAGE }, KeyRegistry.LANGUAGES_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.Languages.Languages.LANGUAGE }, true, ForeignKeyRule.CASCADE, null); 119 public static final ForeignKey<ContentPageLayoutAreas, ContentPageAreaTypes> CONTENT_PAGE_LAYOUT_AREAS_CONTENT_PAGE_AREA_TYPE_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.content.ContentPageLayoutAreas.ContentPageLayoutAreas, DSL.name("cntpla_cntpat_contentpageareatypeid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.content.ContentPageLayoutAreas.ContentPageLayoutAreas.CONTENT_PAGE_AREA_TYPE }, KeyRegistry.CONTENT_PAGE_AREA_TYPES_PK, new TableField[] { com.echothree.model.jooq.server.tables.content.ContentPageAreaTypes.ContentPageAreaTypes.CONTENT_PAGE_AREA_TYPE }, true, ForeignKeyRule.CASCADE, null); 120 public static final ForeignKey<ContentPageLayoutAreas, ContentPageLayouts> CONTENT_PAGE_LAYOUT_AREAS_CONTENT_PAGE_LAYOUT_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.content.ContentPageLayoutAreas.ContentPageLayoutAreas, DSL.name("cntpla_cntpl_contentpagelayoutid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.content.ContentPageLayoutAreas.ContentPageLayoutAreas.CONTENT_PAGE_LAYOUT }, KeyRegistry.CONTENT_PAGE_LAYOUTS_PK, new TableField[] { com.echothree.model.jooq.server.tables.content.ContentPageLayouts.ContentPageLayouts.CONTENT_PAGE_LAYOUT }, true, ForeignKeyRule.CASCADE, null); 121 public static final ForeignKey<ContentPageLayoutDescriptions, ContentPageLayouts> CONTENT_PAGE_LAYOUT_DESCRIPTIONS_CONTENT_PAGE_LAYOUT_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.content.ContentPageLayoutDescriptions.ContentPageLayoutDescriptions, DSL.name("cntpld_cntpl_contentpagelayoutid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.content.ContentPageLayoutDescriptions.ContentPageLayoutDescriptions.CONTENT_PAGE_LAYOUT }, KeyRegistry.CONTENT_PAGE_LAYOUTS_PK, new TableField[] { com.echothree.model.jooq.server.tables.content.ContentPageLayouts.ContentPageLayouts.CONTENT_PAGE_LAYOUT }, true, ForeignKeyRule.CASCADE, null); 122 public static final ForeignKey<ContentPageLayoutDescriptions, Languages> CONTENT_PAGE_LAYOUT_DESCRIPTIONS_LANGUAGE_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.content.ContentPageLayoutDescriptions.ContentPageLayoutDescriptions, DSL.name("cntpld_lang_languageid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.content.ContentPageLayoutDescriptions.ContentPageLayoutDescriptions.LANGUAGE }, KeyRegistry.LANGUAGES_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.Languages.Languages.LANGUAGE }, true, ForeignKeyRule.CASCADE, null); 123 public static final ForeignKey<ContentPageLayoutDetails, ContentPageLayouts> CONTENT_PAGE_LAYOUT_DETAILS_CONTENT_PAGE_LAYOUT_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.content.ContentPageLayoutDetails.ContentPageLayoutDetails, DSL.name("cntpldt_cntpl_contentpagelayoutid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.content.ContentPageLayoutDetails.ContentPageLayoutDetails.CONTENT_PAGE_LAYOUT }, KeyRegistry.CONTENT_PAGE_LAYOUTS_PK, new TableField[] { com.echothree.model.jooq.server.tables.content.ContentPageLayouts.ContentPageLayouts.CONTENT_PAGE_LAYOUT }, true, ForeignKeyRule.CASCADE, null); 124 public static final ForeignKey<ContentPageLayouts, ContentPageLayoutDetails> CONTENT_PAGE_LAYOUTS_ACTIVE_DETAIL_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.content.ContentPageLayouts.ContentPageLayouts, DSL.name("cntpl_activedetailid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.content.ContentPageLayouts.ContentPageLayouts.ACTIVE_DETAIL }, KeyRegistry.CONTENT_PAGE_LAYOUT_DETAILS_PK, new TableField[] { com.echothree.model.jooq.server.tables.content.ContentPageLayoutDetails.ContentPageLayoutDetails.CONTENT_PAGE_LAYOUT_DETAIL }, true, ForeignKeyRule.CASCADE, null); 125 public static final ForeignKey<ContentPageLayouts, ContentPageLayoutDetails> CONTENT_PAGE_LAYOUTS_LAST_DETAIL_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.content.ContentPageLayouts.ContentPageLayouts, DSL.name("cntpl_lastdetailid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.content.ContentPageLayouts.ContentPageLayouts.LAST_DETAIL }, KeyRegistry.CONTENT_PAGE_LAYOUT_DETAILS_PK, new TableField[] { com.echothree.model.jooq.server.tables.content.ContentPageLayoutDetails.ContentPageLayoutDetails.CONTENT_PAGE_LAYOUT_DETAIL }, true, ForeignKeyRule.CASCADE, null); 126 public static final ForeignKey<ContentPages, ContentPageDetails> CONTENT_PAGES_ACTIVE_DETAIL_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.content.ContentPages.ContentPages, DSL.name("cntp_activedetailid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.content.ContentPages.ContentPages.ACTIVE_DETAIL }, KeyRegistry.CONTENT_PAGE_DETAILS_PK, new TableField[] { com.echothree.model.jooq.server.tables.content.ContentPageDetails.ContentPageDetails.CONTENT_PAGE_DETAIL }, true, ForeignKeyRule.CASCADE, null); 127 public static final ForeignKey<ContentPages, ContentPageDetails> CONTENT_PAGES_LAST_DETAIL_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.content.ContentPages.ContentPages, DSL.name("cntp_lastdetailid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.content.ContentPages.ContentPages.LAST_DETAIL }, KeyRegistry.CONTENT_PAGE_DETAILS_PK, new TableField[] { com.echothree.model.jooq.server.tables.content.ContentPageDetails.ContentPageDetails.CONTENT_PAGE_DETAIL }, true, ForeignKeyRule.CASCADE, null); 128 public static final ForeignKey<ContentSectionDescriptions, ContentSections> CONTENT_SECTION_DESCRIPTIONS_CONTENT_SECTION_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.content.ContentSectionDescriptions.ContentSectionDescriptions, DSL.name("cntsd_cnts_contentsectionid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.content.ContentSectionDescriptions.ContentSectionDescriptions.CONTENT_SECTION }, KeyRegistry.CONTENT_SECTIONS_PK, new TableField[] { com.echothree.model.jooq.server.tables.content.ContentSections.ContentSections.CONTENT_SECTION }, true, ForeignKeyRule.CASCADE, null); 129 public static final ForeignKey<ContentSectionDescriptions, Languages> CONTENT_SECTION_DESCRIPTIONS_LANGUAGE_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.content.ContentSectionDescriptions.ContentSectionDescriptions, DSL.name("cntsd_lang_languageid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.content.ContentSectionDescriptions.ContentSectionDescriptions.LANGUAGE }, KeyRegistry.LANGUAGES_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.Languages.Languages.LANGUAGE }, true, ForeignKeyRule.CASCADE, null); 130 public static final ForeignKey<ContentSectionDetails, ContentCollections> CONTENT_SECTION_DETAILS_CONTENT_COLLECTION_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.content.ContentSectionDetails.ContentSectionDetails, DSL.name("cntsdt_cntc_contentcollectionid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.content.ContentSectionDetails.ContentSectionDetails.CONTENT_COLLECTION }, KeyRegistry.CONTENT_COLLECTIONS_PK, new TableField[] { com.echothree.model.jooq.server.tables.content.ContentCollections.ContentCollections.CONTENT_COLLECTION }, true, ForeignKeyRule.CASCADE, null); 131 public static final ForeignKey<ContentSectionDetails, ContentSections> CONTENT_SECTION_DETAILS_CONTENT_SECTION_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.content.ContentSectionDetails.ContentSectionDetails, DSL.name("cntsdt_cnts_contentsectionid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.content.ContentSectionDetails.ContentSectionDetails.CONTENT_SECTION }, KeyRegistry.CONTENT_SECTIONS_PK, new TableField[] { com.echothree.model.jooq.server.tables.content.ContentSections.ContentSections.CONTENT_SECTION }, true, ForeignKeyRule.CASCADE, null); 132 public static final ForeignKey<ContentSectionDetails, ContentSections> CONTENT_SECTION_DETAILS_PARENT_CONTENT_SECTION_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.content.ContentSectionDetails.ContentSectionDetails, DSL.name("cntsdt_parentcontentsectionid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.content.ContentSectionDetails.ContentSectionDetails.PARENT_CONTENT_SECTION }, KeyRegistry.CONTENT_SECTIONS_PK, new TableField[] { com.echothree.model.jooq.server.tables.content.ContentSections.ContentSections.CONTENT_SECTION }, true, ForeignKeyRule.CASCADE, null); 133 public static final ForeignKey<ContentSections, ContentSectionDetails> CONTENT_SECTIONS_ACTIVE_DETAIL_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.content.ContentSections.ContentSections, DSL.name("cnts_activedetailid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.content.ContentSections.ContentSections.ACTIVE_DETAIL }, KeyRegistry.CONTENT_SECTION_DETAILS_PK, new TableField[] { com.echothree.model.jooq.server.tables.content.ContentSectionDetails.ContentSectionDetails.CONTENT_SECTION_DETAIL }, true, ForeignKeyRule.CASCADE, null); 134 public static final ForeignKey<ContentSections, ContentSectionDetails> CONTENT_SECTIONS_LAST_DETAIL_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.content.ContentSections.ContentSections, DSL.name("cnts_lastdetailid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.content.ContentSections.ContentSections.LAST_DETAIL }, KeyRegistry.CONTENT_SECTION_DETAILS_PK, new TableField[] { com.echothree.model.jooq.server.tables.content.ContentSectionDetails.ContentSectionDetails.CONTENT_SECTION_DETAIL }, true, ForeignKeyRule.CASCADE, null); 135 public static final ForeignKey<ContentWebAddressDescriptions, ContentWebAddresses> CONTENT_WEB_ADDRESS_DESCRIPTIONS_CONTENT_WEB_ADDRESS_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.content.ContentWebAddressDescriptions.ContentWebAddressDescriptions, DSL.name("cntwad_cntwa_contentwebaddressid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.content.ContentWebAddressDescriptions.ContentWebAddressDescriptions.CONTENT_WEB_ADDRESS }, KeyRegistry.CONTENT_WEB_ADDRESSES_PK, new TableField[] { com.echothree.model.jooq.server.tables.content.ContentWebAddresses.ContentWebAddresses.CONTENT_WEB_ADDRESS }, true, ForeignKeyRule.CASCADE, null); 136 public static final ForeignKey<ContentWebAddressDescriptions, Languages> CONTENT_WEB_ADDRESS_DESCRIPTIONS_LANGUAGE_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.content.ContentWebAddressDescriptions.ContentWebAddressDescriptions, DSL.name("cntwad_lang_languageid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.content.ContentWebAddressDescriptions.ContentWebAddressDescriptions.LANGUAGE }, KeyRegistry.LANGUAGES_PK, new TableField[] { com.echothree.model.jooq.server.tables.party.Languages.Languages.LANGUAGE }, true, ForeignKeyRule.CASCADE, null); 137 public static final ForeignKey<ContentWebAddressDetails, ContentCollections> CONTENT_WEB_ADDRESS_DETAILS_CONTENT_COLLECTION_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.content.ContentWebAddressDetails.ContentWebAddressDetails, DSL.name("cntwadt_cntc_contentcollectionid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.content.ContentWebAddressDetails.ContentWebAddressDetails.CONTENT_COLLECTION }, KeyRegistry.CONTENT_COLLECTIONS_PK, new TableField[] { com.echothree.model.jooq.server.tables.content.ContentCollections.ContentCollections.CONTENT_COLLECTION }, true, ForeignKeyRule.CASCADE, null); 138 public static final ForeignKey<ContentWebAddressDetails, ContentWebAddresses> CONTENT_WEB_ADDRESS_DETAILS_CONTENT_WEB_ADDRESS_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.content.ContentWebAddressDetails.ContentWebAddressDetails, DSL.name("cntwadt_cntwa_contentwebaddressid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.content.ContentWebAddressDetails.ContentWebAddressDetails.CONTENT_WEB_ADDRESS }, KeyRegistry.CONTENT_WEB_ADDRESSES_PK, new TableField[] { com.echothree.model.jooq.server.tables.content.ContentWebAddresses.ContentWebAddresses.CONTENT_WEB_ADDRESS }, true, ForeignKeyRule.CASCADE, null); 139 public static final ForeignKey<ContentWebAddresses, ContentWebAddressDetails> CONTENT_WEB_ADDRESSES_ACTIVE_DETAIL_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.content.ContentWebAddresses.ContentWebAddresses, DSL.name("cntwa_activedetailid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.content.ContentWebAddresses.ContentWebAddresses.ACTIVE_DETAIL }, KeyRegistry.CONTENT_WEB_ADDRESS_DETAILS_PK, new TableField[] { com.echothree.model.jooq.server.tables.content.ContentWebAddressDetails.ContentWebAddressDetails.CONTENT_WEB_ADDRESS_DETAIL }, true, ForeignKeyRule.CASCADE, null); 140 public static final ForeignKey<ContentWebAddresses, ContentWebAddressDetails> CONTENT_WEB_ADDRESSES_LAST_DETAIL_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.content.ContentWebAddresses.ContentWebAddresses, DSL.name("cntwa_lastdetailid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.content.ContentWebAddresses.ContentWebAddresses.LAST_DETAIL }, KeyRegistry.CONTENT_WEB_ADDRESS_DETAILS_PK, new TableField[] { com.echothree.model.jooq.server.tables.content.ContentWebAddressDetails.ContentWebAddressDetails.CONTENT_WEB_ADDRESS_DETAIL }, true, ForeignKeyRule.CASCADE, null); 141 public static final ForeignKey<ContentWebAddressServers, ContentWebAddresses> CONTENT_WEB_ADDRESS_SERVERS_CONTENT_WEB_ADDRESS_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.content.ContentWebAddressServers.ContentWebAddressServers, DSL.name("cntwaserv_cntwa_contentwebaddressid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.content.ContentWebAddressServers.ContentWebAddressServers.CONTENT_WEB_ADDRESS }, KeyRegistry.CONTENT_WEB_ADDRESSES_PK, new TableField[] { com.echothree.model.jooq.server.tables.content.ContentWebAddresses.ContentWebAddresses.CONTENT_WEB_ADDRESS }, true, ForeignKeyRule.CASCADE, null); 142 public static final ForeignKey<ContentWebAddressServers, Servers> CONTENT_WEB_ADDRESS_SERVERS_SERVER_FK = Internal.createForeignKey(com.echothree.model.jooq.server.tables.content.ContentWebAddressServers.ContentWebAddressServers, DSL.name("cntwaserv_serv_serverid_fk"), new TableField[] { com.echothree.model.jooq.server.tables.content.ContentWebAddressServers.ContentWebAddressServers.SERVER }, KeyRegistry.SERVERS_PK, new TableField[] { com.echothree.model.jooq.server.tables.core.Servers.Servers.SERVER }, true, ForeignKeyRule.CASCADE, null); 143}