diff --git a/web/typo3conf/ext/ep_products/Classes/Domain/Model/Hotel.php b/web/typo3conf/ext/ep_products/Classes/Domain/Model/Hotel.php index 77746dcf..41d5197e 100644 --- a/web/typo3conf/ext/ep_products/Classes/Domain/Model/Hotel.php +++ b/web/typo3conf/ext/ep_products/Classes/Domain/Model/Hotel.php @@ -100,6 +100,11 @@ class Hotel extends \TYPO3\CMS\Extbase\DomainObject\AbstractEntity implements Te */ protected $name = ''; + /** + * @var string + */ + protected $shortName; + /** * @var string */ @@ -367,6 +372,26 @@ class Hotel extends \TYPO3\CMS\Extbase\DomainObject\AbstractEntity implements Te $this->name = $name; } + /** + * @return string + */ + public function getShortName() + { + if (empty($this->shortName)) { + return $this->name; + } + + return $this->shortName; + } + + /** + * @param string $shortName + */ + public function setShortName($shortName) + { + $this->shortName = $shortName; + } + /** * @return string */ diff --git a/web/typo3conf/ext/ep_products/Classes/Domain/Repository/ProductRepository.php b/web/typo3conf/ext/ep_products/Classes/Domain/Repository/ProductRepository.php index ff187673..1b57d72b 100644 --- a/web/typo3conf/ext/ep_products/Classes/Domain/Repository/ProductRepository.php +++ b/web/typo3conf/ext/ep_products/Classes/Domain/Repository/ProductRepository.php @@ -360,7 +360,7 @@ class ProductRepository extends AbstractRepository 'date.hotel as hotelUid', 'date.hotel_name as hotelName', 'date.hotel_header_title as hotelTitle', 'date.hotel_category as hotelCategory', 'room.pax as roomPax', 'room.price as roomPrice', 'room.available as available', - 'hotel.detail_page as hotelDetailPageUid' + 'hotel.detail_page as hotelDetailPageUid', 'hotel.short_name as hotelShortName' ) ->from('tx_epproducts_domain_model_date', 'date') ->innerJoin('date', 'tx_epproducts_domain_model_room', 'room', 'room.date = date.uid') diff --git a/web/typo3conf/ext/ep_products/Classes/Service/DateService.php b/web/typo3conf/ext/ep_products/Classes/Service/DateService.php index 31a686a0..8abca684 100644 --- a/web/typo3conf/ext/ep_products/Classes/Service/DateService.php +++ b/web/typo3conf/ext/ep_products/Classes/Service/DateService.php @@ -396,6 +396,7 @@ class DateService implements SingletonInterface $priceTable[$categoryUid][$hotelUid] = [ 'category' => $categoryUid, 'hotelName' => $row['hotelName'], + 'hotelShortName' => $row['hotelShortName'], 'hotelTitle' => $row['hotelTitle'], 'hotelUri' => $hotelUri, 'bookingUrl' => BookingUrlUtility::generateUrl([ diff --git a/web/typo3conf/ext/ep_products/Configuration/TCA/tx_epproducts_domain_model_hotel.php b/web/typo3conf/ext/ep_products/Configuration/TCA/tx_epproducts_domain_model_hotel.php index b87fdd5d..4c5de57a 100644 --- a/web/typo3conf/ext/ep_products/Configuration/TCA/tx_epproducts_domain_model_hotel.php +++ b/web/typo3conf/ext/ep_products/Configuration/TCA/tx_epproducts_domain_model_hotel.php @@ -32,7 +32,7 @@ return [ ], 'types' => [ '1' => [ - 'showitem' => '--palette--;;top, --palette--;;name, headline, --palette--;;geolocation, + 'showitem' => '--palette--;;top, --palette--;;name, --palette--;;geolocation, --palette--;;destinations, --palette--;;categories, keywords, --div--;Texte, teaser, description, features, room_types, additional_information, --div--;Verknüpfungen, facts, teamer, additional_codes, @@ -41,10 +41,10 @@ return [ ], 'palettes' => [ 'top' => ['showitem' => 'hidden,earlybird,new,low_contingent,show_as_teaser, - --linebreak--,groupsch_id,detail_page,--linebreak--,external_link'], + --linebreak--,code,groupsch_id,detail_page,--linebreak--,external_link'], 'geolocation' => ['showitem' => 'address, longitude, latitude'], 'destinations' => ['showitem' => 'country,region,city'], - 'name' => ['showitem' => 'name,code,--linebreak--,header_title,header_subtitle'], + 'name' => ['showitem' => 'name,short_name,--linebreak--,header_title,header_subtitle,--linebreak--,headline'], 'categories' => ['showitem' => 'type,category'], ], 'columns' => [ @@ -183,6 +183,15 @@ return [ 'eval' => 'trim,required' ], ], + 'short_name' => [ + 'exclude' => 0, + 'label' => 'Kurzname', + 'config' => [ + 'type' => 'input', + 'size' => 30, + 'eval' => 'trim' + ], + ], 'keywords' => [ 'exclude' => 0, 'label' => 'Keywords für Suchschlitz', diff --git a/web/typo3conf/ext/ep_products/ext_tables.sql b/web/typo3conf/ext/ep_products/ext_tables.sql index e332f0bf..ee0cdbe6 100644 --- a/web/typo3conf/ext/ep_products/ext_tables.sql +++ b/web/typo3conf/ext/ep_products/ext_tables.sql @@ -2,1282 +2,1316 @@ # # Table structure for table 'tx_epproducts_domain_model_product' # -CREATE TABLE tx_epproducts_domain_model_product ( +CREATE TABLE tx_epproducts_domain_model_product +( - uid int(11) NOT NULL auto_increment, - pid int(11) DEFAULT '0' NOT NULL, + uid int(11) NOT NULL auto_increment, + pid int(11) DEFAULT '0' NOT NULL, - searchable tinyint(4) unsigned DEFAULT '1' NOT NULL, - bookable tinyint(4) unsigned DEFAULT '1' NOT NULL, - daytrip tinyint(4) unsigned DEFAULT '0' NOT NULL, - important tinyint(4) unsigned DEFAULT '0' NOT NULL, - skipass_included tinyint(4) unsigned DEFAULT '1' NOT NULL, - name varchar(255) DEFAULT '' NOT NULL, - name_internal varchar(255) DEFAULT '' NOT NULL, - subline varchar(255) DEFAULT '' NOT NULL, - headline varchar(255) DEFAULT '' NOT NULL, - code varchar(255) DEFAULT '' NOT NULL, - feature varchar(255) DEFAULT '' NOT NULL, - bus_pro_id int(11) unsigned NOT NULL default '0', - detail_page varchar(255) DEFAULT '' NOT NULL, - external_link varchar(255) DEFAULT '' NOT NULL, - description text NOT NULL, - teaser text NOT NULL, - teaser_long text NOT NULL, - header_title varchar(255) DEFAULT '' NOT NULL, - header_subtitle varchar(255) DEFAULT '' NOT NULL, - keywords text NOT NULL, - concept_description text NOT NULL, - board_description text NOT NULL, - additional_services text NOT NULL, - programme_description text NOT NULL, - ski_pass_description text NOT NULL, - rating_average varchar(255) DEFAULT '' NOT NULL, - rating_votes_count int(11) unsigned NOT NULL default '0', - testimonials text NOT NULL, - teaser_images int(11) unsigned NOT NULL default '0', - header_images int(11) unsigned NOT NULL default '0', - images int(11) unsigned NOT NULL default '0', - reseller_images int(11) unsigned NOT NULL default '0', - concept int(11) unsigned DEFAULT '0' NOT NULL, - country int(11) unsigned DEFAULT '0' NOT NULL, - region int(11) unsigned DEFAULT '0' NOT NULL, - additional_regions int(11) unsigned DEFAULT '0' NOT NULL, - city int(11) unsigned DEFAULT '0' NOT NULL, - journey int(11) unsigned DEFAULT '0' NOT NULL, - facts int(11) unsigned DEFAULT '0' NOT NULL, - dates int(11) unsigned DEFAULT '0' NOT NULL, - hotels int(11) unsigned DEFAULT '0' NOT NULL, - calendar_hotel int(11) unsigned DEFAULT '0' NOT NULL, - faqs int(11) unsigned DEFAULT '0' NOT NULL, - officetip int(11) unsigned DEFAULT '0' NOT NULL, - alt_product int(11) unsigned DEFAULT '0' NOT NULL, - alt_label varchar(255) DEFAULT '' NOT NULL, - video varchar(255) DEFAULT '' NOT NULL, - banner int(11) unsigned NOT NULL default '0', - badge int(11) unsigned NOT NULL default '0', + searchable tinyint(4) unsigned DEFAULT '1' NOT NULL, + bookable tinyint(4) unsigned DEFAULT '1' NOT NULL, + daytrip tinyint(4) unsigned DEFAULT '0' NOT NULL, + important tinyint(4) unsigned DEFAULT '0' NOT NULL, + skipass_included tinyint(4) unsigned DEFAULT '1' NOT NULL, + name varchar(255) DEFAULT '' NOT NULL, + name_internal varchar(255) DEFAULT '' NOT NULL, + subline varchar(255) DEFAULT '' NOT NULL, + headline varchar(255) DEFAULT '' NOT NULL, + code varchar(255) DEFAULT '' NOT NULL, + feature varchar(255) DEFAULT '' NOT NULL, + bus_pro_id int(11) unsigned NOT NULL default '0', + detail_page varchar(255) DEFAULT '' NOT NULL, + external_link varchar(255) DEFAULT '' NOT NULL, + description text NOT NULL, + teaser text NOT NULL, + teaser_long text NOT NULL, + header_title varchar(255) DEFAULT '' NOT NULL, + header_subtitle varchar(255) DEFAULT '' NOT NULL, + keywords text NOT NULL, + concept_description text NOT NULL, + board_description text NOT NULL, + additional_services text NOT NULL, + programme_description text NOT NULL, + ski_pass_description text NOT NULL, + rating_average varchar(255) DEFAULT '' NOT NULL, + rating_votes_count int(11) unsigned NOT NULL default '0', + testimonials text NOT NULL, + teaser_images int(11) unsigned NOT NULL default '0', + header_images int(11) unsigned NOT NULL default '0', + images int(11) unsigned NOT NULL default '0', + reseller_images int(11) unsigned NOT NULL default '0', + concept int(11) unsigned DEFAULT '0' NOT NULL, + country int(11) unsigned DEFAULT '0' NOT NULL, + region int(11) unsigned DEFAULT '0' NOT NULL, + additional_regions int(11) unsigned DEFAULT '0' NOT NULL, + city int(11) unsigned DEFAULT '0' NOT NULL, + journey int(11) unsigned DEFAULT '0' NOT NULL, + facts int(11) unsigned DEFAULT '0' NOT NULL, + dates int(11) unsigned DEFAULT '0' NOT NULL, + hotels int(11) unsigned DEFAULT '0' NOT NULL, + calendar_hotel int(11) unsigned DEFAULT '0' NOT NULL, + faqs int(11) unsigned DEFAULT '0' NOT NULL, + officetip int(11) unsigned DEFAULT '0' NOT NULL, + alt_product int(11) unsigned DEFAULT '0' NOT NULL, + alt_label varchar(255) DEFAULT '' NOT NULL, + video varchar(255) DEFAULT '' NOT NULL, + banner int(11) unsigned NOT NULL default '0', + badge int(11) unsigned NOT NULL default '0', - tstamp int(11) unsigned DEFAULT '0' NOT NULL, - crdate int(11) unsigned DEFAULT '0' NOT NULL, - cruser_id int(11) unsigned DEFAULT '0' NOT NULL, - deleted tinyint(4) unsigned DEFAULT '0' NOT NULL, - hidden tinyint(4) unsigned DEFAULT '0' NOT NULL, - starttime int(11) unsigned DEFAULT '0' NOT NULL, - endtime int(11) unsigned DEFAULT '0' NOT NULL, + tstamp int(11) unsigned DEFAULT '0' NOT NULL, + crdate int(11) unsigned DEFAULT '0' NOT NULL, + cruser_id int(11) unsigned DEFAULT '0' NOT NULL, + deleted tinyint(4) unsigned DEFAULT '0' NOT NULL, + hidden tinyint(4) unsigned DEFAULT '0' NOT NULL, + starttime int(11) unsigned DEFAULT '0' NOT NULL, + endtime int(11) unsigned DEFAULT '0' NOT NULL, - t3ver_oid int(11) DEFAULT '0' NOT NULL, - t3ver_id int(11) DEFAULT '0' NOT NULL, - t3ver_wsid int(11) DEFAULT '0' NOT NULL, - t3ver_label varchar(255) DEFAULT '' NOT NULL, - t3ver_state tinyint(4) DEFAULT '0' NOT NULL, - t3ver_stage int(11) DEFAULT '0' NOT NULL, - t3ver_count int(11) DEFAULT '0' NOT NULL, - t3ver_tstamp int(11) DEFAULT '0' NOT NULL, - t3ver_move_id int(11) DEFAULT '0' NOT NULL, + t3ver_oid int(11) DEFAULT '0' NOT NULL, + t3ver_id int(11) DEFAULT '0' NOT NULL, + t3ver_wsid int(11) DEFAULT '0' NOT NULL, + t3ver_label varchar(255) DEFAULT '' NOT NULL, + t3ver_state tinyint(4) DEFAULT '0' NOT NULL, + t3ver_stage int(11) DEFAULT '0' NOT NULL, + t3ver_count int(11) DEFAULT '0' NOT NULL, + t3ver_tstamp int(11) DEFAULT '0' NOT NULL, + t3ver_move_id int(11) DEFAULT '0' NOT NULL, - sys_language_uid int(11) DEFAULT '0' NOT NULL, - l10n_parent int(11) DEFAULT '0' NOT NULL, - l10n_diffsource mediumblob, + sys_language_uid int(11) DEFAULT '0' NOT NULL, + l10n_parent int(11) DEFAULT '0' NOT NULL, + l10n_diffsource mediumblob, - PRIMARY KEY (uid), - KEY parent (pid), - KEY t3ver_oid (t3ver_oid,t3ver_wsid), - KEY language (l10n_parent,sys_language_uid) + PRIMARY KEY (uid), + KEY parent (pid), + KEY t3ver_oid (t3ver_oid, t3ver_wsid), + KEY language (l10n_parent, sys_language_uid) ); # # Table structure for table 'tx_epproducts_domain_model_date' # -CREATE TABLE tx_epproducts_domain_model_date ( +CREATE TABLE tx_epproducts_domain_model_date +( - uid int(11) NOT NULL auto_increment, - pid int(11) DEFAULT '0' NOT NULL, + uid int(11) NOT NULL auto_increment, + pid int(11) DEFAULT '0' NOT NULL, - bus_pro_id int(11) DEFAULT '0' NOT NULL, - hotel_bus_pro_id int(11) DEFAULT '0' NOT NULL, - code varchar(255) DEFAULT '' NOT NULL, - date_start date DEFAULT '0000-00-00', - date_end date DEFAULT '0000-00-00', - nights int(11) DEFAULT '0' NOT NULL, - board varchar(255) DEFAULT '' NOT NULL, - board_bus_pro_id int(11) DEFAULT '0' NOT NULL, - board_code varchar(64) DEFAULT '' NOT NULL, - bus_included tinyint(1) unsigned DEFAULT '0' NOT NULL, - bus_available tinyint(1) unsigned DEFAULT '0' NOT NULL, - skipass_included tinyint(1) unsigned DEFAULT '0' NOT NULL, - bus_price int(11) DEFAULT '0' NOT NULL, - services_included text NOT NULL, - services_general text NOT NULL, - pickups text NOT NULL, - discount int(11) DEFAULT '0' NOT NULL, - min_price int(11) DEFAULT '0' NOT NULL, - pseudo_price int(11) DEFAULT '0' NOT NULL, - available int(11) DEFAULT '0' NOT NULL, - product int(11) unsigned DEFAULT '0', - daytrip tinyint(1) unsigned DEFAULT '0' NOT NULL, - important tinyint(1) unsigned DEFAULT '0' NOT NULL, - product_name varchar(255) DEFAULT '' NOT NULL, - product_subline varchar(255) DEFAULT '' NOT NULL, - product_fact varchar(255) DEFAULT '' NOT NULL, - product_searchable tinyint(4) unsigned DEFAULT '0' NOT NULL, - product_detail_page varchar(255) DEFAULT '' NOT NULL, - product_keywords text NOT NULL, - product_teaser text NOT NULL, - product_feature varchar(255) DEFAULT '' NOT NULL, - concept int(11) unsigned DEFAULT '0', - concept_name varchar(255) DEFAULT '' NOT NULL, - concept_code varchar(32) DEFAULT '' NOT NULL, - concept_sorting int(11) DEFAULT '0' NOT NULL, - country int(11) unsigned DEFAULT '0', - country_name varchar(255) DEFAULT '' NOT NULL, - country_code char(2) DEFAULT '' NOT NULL, - country_keywords text NOT NULL, - region int(11) unsigned DEFAULT '0', - region_name varchar(255) DEFAULT '' NOT NULL, - region_fact varchar(255) DEFAULT '' NOT NULL, - region_keywords text NOT NULL, - region_feature varchar(255) DEFAULT '' NOT NULL, - city int(11) unsigned DEFAULT '0', - city_name varchar(255) DEFAULT '' NOT NULL, - city_keywords text NOT NULL, - hotel int(11) unsigned DEFAULT '0', - hotel_code varchar(32) DEFAULT '' NOT NULL, - hotel_category int(11) DEFAULT '0' NOT NULL, - hotel_name varchar(255) DEFAULT '' NOT NULL, - hotel_header_title varchar(255) DEFAULT '' NOT NULL, - hotel_fact varchar(255) DEFAULT '' NOT NULL, - hotel_type tinyint(4) unsigned DEFAULT '0' NOT NULL, - hotel_keywords text NOT NULL, - hotel_teaser text NOT NULL, - hotel_detail_page varchar(255) DEFAULT '' NOT NULL, - earlybird tinyint(4) unsigned DEFAULT '0' NOT NULL, - new tinyint(4) unsigned DEFAULT '0' NOT NULL, - low_contingent tinyint(4) unsigned DEFAULT '0' NOT NULL, - rooms int(11) unsigned DEFAULT '0', + bus_pro_id int(11) DEFAULT '0' NOT NULL, + hotel_bus_pro_id int(11) DEFAULT '0' NOT NULL, + code varchar(255) DEFAULT '' NOT NULL, + date_start date DEFAULT '0000-00-00', + date_end date DEFAULT '0000-00-00', + nights int(11) DEFAULT '0' NOT NULL, + board varchar(255) DEFAULT '' NOT NULL, + board_bus_pro_id int(11) DEFAULT '0' NOT NULL, + board_code varchar(64) DEFAULT '' NOT NULL, + bus_included tinyint(1) unsigned DEFAULT '0' NOT NULL, + bus_available tinyint(1) unsigned DEFAULT '0' NOT NULL, + skipass_included tinyint(1) unsigned DEFAULT '0' NOT NULL, + bus_price int(11) DEFAULT '0' NOT NULL, + services_included text NOT NULL, + services_general text NOT NULL, + pickups text NOT NULL, + discount int(11) DEFAULT '0' NOT NULL, + min_price int(11) DEFAULT '0' NOT NULL, + pseudo_price int(11) DEFAULT '0' NOT NULL, + available int(11) DEFAULT '0' NOT NULL, + product int(11) unsigned DEFAULT '0', + daytrip tinyint(1) unsigned DEFAULT '0' NOT NULL, + important tinyint(1) unsigned DEFAULT '0' NOT NULL, + product_name varchar(255) DEFAULT '' NOT NULL, + product_subline varchar(255) DEFAULT '' NOT NULL, + product_fact varchar(255) DEFAULT '' NOT NULL, + product_searchable tinyint(4) unsigned DEFAULT '0' NOT NULL, + product_detail_page varchar(255) DEFAULT '' NOT NULL, + product_keywords text NOT NULL, + product_teaser text NOT NULL, + product_feature varchar(255) DEFAULT '' NOT NULL, + concept int(11) unsigned DEFAULT '0', + concept_name varchar(255) DEFAULT '' NOT NULL, + concept_code varchar(32) DEFAULT '' NOT NULL, + concept_sorting int(11) DEFAULT '0' NOT NULL, + country int(11) unsigned DEFAULT '0', + country_name varchar(255) DEFAULT '' NOT NULL, + country_code char(2) DEFAULT '' NOT NULL, + country_keywords text NOT NULL, + region int(11) unsigned DEFAULT '0', + region_name varchar(255) DEFAULT '' NOT NULL, + region_fact varchar(255) DEFAULT '' NOT NULL, + region_keywords text NOT NULL, + region_feature varchar(255) DEFAULT '' NOT NULL, + city int(11) unsigned DEFAULT '0', + city_name varchar(255) DEFAULT '' NOT NULL, + city_keywords text NOT NULL, + hotel int(11) unsigned DEFAULT '0', + hotel_code varchar(32) DEFAULT '' NOT NULL, + hotel_category int(11) DEFAULT '0' NOT NULL, + hotel_name varchar(255) DEFAULT '' NOT NULL, + hotel_header_title varchar(255) DEFAULT '' NOT NULL, + hotel_fact varchar(255) DEFAULT '' NOT NULL, + hotel_type tinyint(4) unsigned DEFAULT '0' NOT NULL, + hotel_keywords text NOT NULL, + hotel_teaser text NOT NULL, + hotel_detail_page varchar(255) DEFAULT '' NOT NULL, + earlybird tinyint(4) unsigned DEFAULT '0' NOT NULL, + new tinyint(4) unsigned DEFAULT '0' NOT NULL, + low_contingent tinyint(4) unsigned DEFAULT '0' NOT NULL, + rooms int(11) unsigned DEFAULT '0', - tstamp int(11) unsigned DEFAULT '0' NOT NULL, - crdate int(11) unsigned DEFAULT '0' NOT NULL, - cruser_id int(11) unsigned DEFAULT '0' NOT NULL, - deleted tinyint(4) unsigned DEFAULT '0' NOT NULL, - hidden tinyint(4) unsigned DEFAULT '0' NOT NULL, - starttime int(11) unsigned DEFAULT '0' NOT NULL, - endtime int(11) unsigned DEFAULT '0' NOT NULL, + tstamp int(11) unsigned DEFAULT '0' NOT NULL, + crdate int(11) unsigned DEFAULT '0' NOT NULL, + cruser_id int(11) unsigned DEFAULT '0' NOT NULL, + deleted tinyint(4) unsigned DEFAULT '0' NOT NULL, + hidden tinyint(4) unsigned DEFAULT '0' NOT NULL, + starttime int(11) unsigned DEFAULT '0' NOT NULL, + endtime int(11) unsigned DEFAULT '0' NOT NULL, - t3ver_oid int(11) DEFAULT '0' NOT NULL, - t3ver_id int(11) DEFAULT '0' NOT NULL, - t3ver_wsid int(11) DEFAULT '0' NOT NULL, - t3ver_label varchar(255) DEFAULT '' NOT NULL, - t3ver_state tinyint(4) DEFAULT '0' NOT NULL, - t3ver_stage int(11) DEFAULT '0' NOT NULL, - t3ver_count int(11) DEFAULT '0' NOT NULL, - t3ver_tstamp int(11) DEFAULT '0' NOT NULL, - t3ver_move_id int(11) DEFAULT '0' NOT NULL, + t3ver_oid int(11) DEFAULT '0' NOT NULL, + t3ver_id int(11) DEFAULT '0' NOT NULL, + t3ver_wsid int(11) DEFAULT '0' NOT NULL, + t3ver_label varchar(255) DEFAULT '' NOT NULL, + t3ver_state tinyint(4) DEFAULT '0' NOT NULL, + t3ver_stage int(11) DEFAULT '0' NOT NULL, + t3ver_count int(11) DEFAULT '0' NOT NULL, + t3ver_tstamp int(11) DEFAULT '0' NOT NULL, + t3ver_move_id int(11) DEFAULT '0' NOT NULL, - sys_language_uid int(11) DEFAULT '0' NOT NULL, - l10n_parent int(11) DEFAULT '0' NOT NULL, - l10n_diffsource mediumblob, + sys_language_uid int(11) DEFAULT '0' NOT NULL, + l10n_parent int(11) DEFAULT '0' NOT NULL, + l10n_diffsource mediumblob, - PRIMARY KEY (uid), - KEY parent (pid), - KEY t3ver_oid (t3ver_oid,t3ver_wsid), - KEY language (l10n_parent,sys_language_uid), - KEY aggregates (date_start,date_end,min_price), - KEY relations (product,date_start), - KEY contingents (hotel_code,date_start), - KEY groups (product,hotel) + PRIMARY KEY (uid), + KEY parent (pid), + KEY t3ver_oid (t3ver_oid, t3ver_wsid), + KEY language (l10n_parent, sys_language_uid), + KEY aggregates (date_start, date_end, min_price), + KEY relations (product, date_start), + KEY contingents (hotel_code, date_start), + KEY groups (product, hotel) ); # # Table structure for table 'tx_epproducts_domain_model_hotel' # -CREATE TABLE tx_epproducts_domain_model_hotel ( +CREATE TABLE tx_epproducts_domain_model_hotel +( - uid int(11) NOT NULL auto_increment, - pid int(11) DEFAULT '0' NOT NULL, + uid int(11) NOT NULL auto_increment, + pid int(11) DEFAULT '0' NOT NULL, - earlybird tinyint(4) unsigned DEFAULT '0' NOT NULL, - new tinyint(4) unsigned DEFAULT '0' NOT NULL, - low_contingent tinyint(4) unsigned DEFAULT '0' NOT NULL, - show_as_teaser tinyint(4) unsigned DEFAULT '0' NOT NULL, - detail_page varchar(255) DEFAULT '' NOT NULL, - name varchar(255) DEFAULT '' NOT NULL, - headline varchar(255) DEFAULT '' NOT NULL, - description text NOT NULL, - keywords text NOT NULL, - features text NOT NULL, - room_types text NOT NULL, - additional_information text NOT NULL, - teaser text NOT NULL, - header_title varchar(255) DEFAULT '' NOT NULL, - header_subtitle varchar(255) DEFAULT '' NOT NULL, - teaser_images int(11) unsigned NOT NULL default '0', - header_images int(11) unsigned NOT NULL default '0', - images int(11) unsigned NOT NULL default '0', - reseller_images int(11) unsigned NOT NULL default '0', - code varchar(255) DEFAULT '' NOT NULL, - groupsch_id varchar(8) DEFAULT '' NOT NULL, - external_link varchar(255) DEFAULT '' NOT NULL, - type varchar(255) DEFAULT '' NOT NULL, - category int(11) DEFAULT '0' NOT NULL, - country int(11) unsigned DEFAULT '0', - region int(11) unsigned DEFAULT '0', - city int(11) unsigned DEFAULT '0', - teamer int(11) unsigned DEFAULT '0' NOT NULL, - products int(11) unsigned DEFAULT '0' NOT NULL, - rooms int(11) unsigned DEFAULT '0' NOT NULL, - facts int(11) unsigned DEFAULT '0' NOT NULL, - additional_codes int(11) unsigned DEFAULT '0' NOT NULL, - address varchar(255) DEFAULT '' NOT NULL, - latitude varchar(255) DEFAULT '' NOT NULL, - longitude varchar(255) DEFAULT '' NOT NULL, + earlybird tinyint(4) unsigned DEFAULT '0' NOT NULL, + new tinyint(4) unsigned DEFAULT '0' NOT NULL, + low_contingent tinyint(4) unsigned DEFAULT '0' NOT NULL, + show_as_teaser tinyint(4) unsigned DEFAULT '0' NOT NULL, + detail_page varchar(255) DEFAULT '' NOT NULL, + name varchar(255) DEFAULT '' NOT NULL, + short_name varchar(255) DEFAULT '' NOT NULL, + headline varchar(255) DEFAULT '' NOT NULL, + description text NOT NULL, + keywords text NOT NULL, + features text NOT NULL, + room_types text NOT NULL, + additional_information text NOT NULL, + teaser text NOT NULL, + header_title varchar(255) DEFAULT '' NOT NULL, + header_subtitle varchar(255) DEFAULT '' NOT NULL, + teaser_images int(11) unsigned NOT NULL default '0', + header_images int(11) unsigned NOT NULL default '0', + images int(11) unsigned NOT NULL default '0', + reseller_images int(11) unsigned NOT NULL default '0', + code varchar(255) DEFAULT '' NOT NULL, + groupsch_id varchar(8) DEFAULT '' NOT NULL, + external_link varchar(255) DEFAULT '' NOT NULL, + type varchar(255) DEFAULT '' NOT NULL, + category int(11) DEFAULT '0' NOT NULL, + country int(11) unsigned DEFAULT '0', + region int(11) unsigned DEFAULT '0', + city int(11) unsigned DEFAULT '0', + teamer int(11) unsigned DEFAULT '0' NOT NULL, + products int(11) unsigned DEFAULT '0' NOT NULL, + rooms int(11) unsigned DEFAULT '0' NOT NULL, + facts int(11) unsigned DEFAULT '0' NOT NULL, + additional_codes int(11) unsigned DEFAULT '0' NOT NULL, + address varchar(255) DEFAULT '' NOT NULL, + latitude varchar(255) DEFAULT '' NOT NULL, + longitude varchar(255) DEFAULT '' NOT NULL, - tstamp int(11) unsigned DEFAULT '0' NOT NULL, - crdate int(11) unsigned DEFAULT '0' NOT NULL, - cruser_id int(11) unsigned DEFAULT '0' NOT NULL, - deleted tinyint(4) unsigned DEFAULT '0' NOT NULL, - hidden tinyint(4) unsigned DEFAULT '0' NOT NULL, - starttime int(11) unsigned DEFAULT '0' NOT NULL, - endtime int(11) unsigned DEFAULT '0' NOT NULL, + tstamp int(11) unsigned DEFAULT '0' NOT NULL, + crdate int(11) unsigned DEFAULT '0' NOT NULL, + cruser_id int(11) unsigned DEFAULT '0' NOT NULL, + deleted tinyint(4) unsigned DEFAULT '0' NOT NULL, + hidden tinyint(4) unsigned DEFAULT '0' NOT NULL, + starttime int(11) unsigned DEFAULT '0' NOT NULL, + endtime int(11) unsigned DEFAULT '0' NOT NULL, - t3ver_oid int(11) DEFAULT '0' NOT NULL, - t3ver_id int(11) DEFAULT '0' NOT NULL, - t3ver_wsid int(11) DEFAULT '0' NOT NULL, - t3ver_label varchar(255) DEFAULT '' NOT NULL, - t3ver_state tinyint(4) DEFAULT '0' NOT NULL, - t3ver_stage int(11) DEFAULT '0' NOT NULL, - t3ver_count int(11) DEFAULT '0' NOT NULL, - t3ver_tstamp int(11) DEFAULT '0' NOT NULL, - t3ver_move_id int(11) DEFAULT '0' NOT NULL, + t3ver_oid int(11) DEFAULT '0' NOT NULL, + t3ver_id int(11) DEFAULT '0' NOT NULL, + t3ver_wsid int(11) DEFAULT '0' NOT NULL, + t3ver_label varchar(255) DEFAULT '' NOT NULL, + t3ver_state tinyint(4) DEFAULT '0' NOT NULL, + t3ver_stage int(11) DEFAULT '0' NOT NULL, + t3ver_count int(11) DEFAULT '0' NOT NULL, + t3ver_tstamp int(11) DEFAULT '0' NOT NULL, + t3ver_move_id int(11) DEFAULT '0' NOT NULL, - sys_language_uid int(11) DEFAULT '0' NOT NULL, - l10n_parent int(11) DEFAULT '0' NOT NULL, - l10n_diffsource mediumblob, + sys_language_uid int(11) DEFAULT '0' NOT NULL, + l10n_parent int(11) DEFAULT '0' NOT NULL, + l10n_diffsource mediumblob, - PRIMARY KEY (uid), - KEY parent (pid), - KEY t3ver_oid (t3ver_oid,t3ver_wsid), - KEY language (l10n_parent,sys_language_uid) + PRIMARY KEY (uid), + KEY parent (pid), + KEY t3ver_oid (t3ver_oid, t3ver_wsid), + KEY language (l10n_parent, sys_language_uid) ); # # Table structure for table 'tx_epproducts_domain_model_room' # -CREATE TABLE tx_epproducts_domain_model_room ( +CREATE TABLE tx_epproducts_domain_model_room +( - uid int(11) NOT NULL auto_increment, - pid int(11) DEFAULT '0' NOT NULL, + uid int(11) NOT NULL auto_increment, + pid int(11) DEFAULT '0' NOT NULL, - bus_pro_id int(11) DEFAULT '0' NOT NULL, - name varchar(255) DEFAULT '' NOT NULL, - code varchar(255) DEFAULT '' NOT NULL, - type int(11) DEFAULT '0' NOT NULL, - price int(11) DEFAULT '0' NOT NULL, - services text NOT NULL, - nights int(11) DEFAULT '0' NOT NULL, - pax int(11) DEFAULT '0' NOT NULL, - available int(11) DEFAULT '0' NOT NULL, - status int(11) DEFAULT '0' NOT NULL, - date int(11) unsigned DEFAULT '0', - hotel int(11) unsigned DEFAULT '0', + bus_pro_id int(11) DEFAULT '0' NOT NULL, + name varchar(255) DEFAULT '' NOT NULL, + code varchar(255) DEFAULT '' NOT NULL, + type int(11) DEFAULT '0' NOT NULL, + price int(11) DEFAULT '0' NOT NULL, + services text NOT NULL, + nights int(11) DEFAULT '0' NOT NULL, + pax int(11) DEFAULT '0' NOT NULL, + available int(11) DEFAULT '0' NOT NULL, + status int(11) DEFAULT '0' NOT NULL, + date int(11) unsigned DEFAULT '0', + hotel int(11) unsigned DEFAULT '0', - tstamp int(11) unsigned DEFAULT '0' NOT NULL, - crdate int(11) unsigned DEFAULT '0' NOT NULL, - cruser_id int(11) unsigned DEFAULT '0' NOT NULL, - deleted tinyint(4) unsigned DEFAULT '0' NOT NULL, - hidden tinyint(4) unsigned DEFAULT '0' NOT NULL, - starttime int(11) unsigned DEFAULT '0' NOT NULL, - endtime int(11) unsigned DEFAULT '0' NOT NULL, + tstamp int(11) unsigned DEFAULT '0' NOT NULL, + crdate int(11) unsigned DEFAULT '0' NOT NULL, + cruser_id int(11) unsigned DEFAULT '0' NOT NULL, + deleted tinyint(4) unsigned DEFAULT '0' NOT NULL, + hidden tinyint(4) unsigned DEFAULT '0' NOT NULL, + starttime int(11) unsigned DEFAULT '0' NOT NULL, + endtime int(11) unsigned DEFAULT '0' NOT NULL, - t3ver_oid int(11) DEFAULT '0' NOT NULL, - t3ver_id int(11) DEFAULT '0' NOT NULL, - t3ver_wsid int(11) DEFAULT '0' NOT NULL, - t3ver_label varchar(255) DEFAULT '' NOT NULL, - t3ver_state tinyint(4) DEFAULT '0' NOT NULL, - t3ver_stage int(11) DEFAULT '0' NOT NULL, - t3ver_count int(11) DEFAULT '0' NOT NULL, - t3ver_tstamp int(11) DEFAULT '0' NOT NULL, - t3ver_move_id int(11) DEFAULT '0' NOT NULL, + t3ver_oid int(11) DEFAULT '0' NOT NULL, + t3ver_id int(11) DEFAULT '0' NOT NULL, + t3ver_wsid int(11) DEFAULT '0' NOT NULL, + t3ver_label varchar(255) DEFAULT '' NOT NULL, + t3ver_state tinyint(4) DEFAULT '0' NOT NULL, + t3ver_stage int(11) DEFAULT '0' NOT NULL, + t3ver_count int(11) DEFAULT '0' NOT NULL, + t3ver_tstamp int(11) DEFAULT '0' NOT NULL, + t3ver_move_id int(11) DEFAULT '0' NOT NULL, - sys_language_uid int(11) DEFAULT '0' NOT NULL, - l10n_parent int(11) DEFAULT '0' NOT NULL, - l10n_diffsource mediumblob, + sys_language_uid int(11) DEFAULT '0' NOT NULL, + l10n_parent int(11) DEFAULT '0' NOT NULL, + l10n_diffsource mediumblob, - PRIMARY KEY (uid), - KEY parent (pid), - KEY t3ver_oid (t3ver_oid,t3ver_wsid), - KEY language (l10n_parent,sys_language_uid), - KEY constraints (date,type) + PRIMARY KEY (uid), + KEY parent (pid), + KEY t3ver_oid (t3ver_oid, t3ver_wsid), + KEY language (l10n_parent, sys_language_uid), + KEY constraints (date, type) ); # # Table structure for table 'tx_epproducts_domain_model_roommapping' # -CREATE TABLE tx_epproducts_domain_model_roommapping ( +CREATE TABLE tx_epproducts_domain_model_roommapping +( - uid int(11) NOT NULL auto_increment, - pid int(11) DEFAULT '0' NOT NULL, + uid int(11) NOT NULL auto_increment, + pid int(11) DEFAULT '0' NOT NULL, - code varchar(255) DEFAULT '' NOT NULL, - type int(11) DEFAULT '0' NOT NULL, + code varchar(255) DEFAULT '' NOT NULL, + type int(11) DEFAULT '0' NOT NULL, - tstamp int(11) unsigned DEFAULT '0' NOT NULL, - crdate int(11) unsigned DEFAULT '0' NOT NULL, - cruser_id int(11) unsigned DEFAULT '0' NOT NULL, - deleted tinyint(4) unsigned DEFAULT '0' NOT NULL, - hidden tinyint(4) unsigned DEFAULT '0' NOT NULL, - starttime int(11) unsigned DEFAULT '0' NOT NULL, - endtime int(11) unsigned DEFAULT '0' NOT NULL, + tstamp int(11) unsigned DEFAULT '0' NOT NULL, + crdate int(11) unsigned DEFAULT '0' NOT NULL, + cruser_id int(11) unsigned DEFAULT '0' NOT NULL, + deleted tinyint(4) unsigned DEFAULT '0' NOT NULL, + hidden tinyint(4) unsigned DEFAULT '0' NOT NULL, + starttime int(11) unsigned DEFAULT '0' NOT NULL, + endtime int(11) unsigned DEFAULT '0' NOT NULL, - t3ver_oid int(11) DEFAULT '0' NOT NULL, - t3ver_id int(11) DEFAULT '0' NOT NULL, - t3ver_wsid int(11) DEFAULT '0' NOT NULL, - t3ver_label varchar(255) DEFAULT '' NOT NULL, - t3ver_state tinyint(4) DEFAULT '0' NOT NULL, - t3ver_stage int(11) DEFAULT '0' NOT NULL, - t3ver_count int(11) DEFAULT '0' NOT NULL, - t3ver_tstamp int(11) DEFAULT '0' NOT NULL, - t3ver_move_id int(11) DEFAULT '0' NOT NULL, + t3ver_oid int(11) DEFAULT '0' NOT NULL, + t3ver_id int(11) DEFAULT '0' NOT NULL, + t3ver_wsid int(11) DEFAULT '0' NOT NULL, + t3ver_label varchar(255) DEFAULT '' NOT NULL, + t3ver_state tinyint(4) DEFAULT '0' NOT NULL, + t3ver_stage int(11) DEFAULT '0' NOT NULL, + t3ver_count int(11) DEFAULT '0' NOT NULL, + t3ver_tstamp int(11) DEFAULT '0' NOT NULL, + t3ver_move_id int(11) DEFAULT '0' NOT NULL, - sys_language_uid int(11) DEFAULT '0' NOT NULL, - l10n_parent int(11) DEFAULT '0' NOT NULL, - l10n_diffsource mediumblob, + sys_language_uid int(11) DEFAULT '0' NOT NULL, + l10n_parent int(11) DEFAULT '0' NOT NULL, + l10n_diffsource mediumblob, - PRIMARY KEY (uid), - KEY parent (pid), - KEY t3ver_oid (t3ver_oid,t3ver_wsid), - KEY language (l10n_parent,sys_language_uid) + PRIMARY KEY (uid), + KEY parent (pid), + KEY t3ver_oid (t3ver_oid, t3ver_wsid), + KEY language (l10n_parent, sys_language_uid) ); # # Table structure for table 'tx_epproducts_domain_model_concept' # -CREATE TABLE tx_epproducts_domain_model_concept ( +CREATE TABLE tx_epproducts_domain_model_concept +( - uid int(11) NOT NULL auto_increment, - pid int(11) DEFAULT '0' NOT NULL, + uid int(11) NOT NULL auto_increment, + pid int(11) DEFAULT '0' NOT NULL, - sorting int(11) DEFAULT '0' NOT NULL, - bus_pro_id int(11) DEFAULT '0' NOT NULL, - name varchar(255) DEFAULT '' NOT NULL, - code varchar(255) DEFAULT '' NOT NULL, - description text NOT NULL, - description_extended text NOT NULL, - detail_page varchar(255) DEFAULT '' NOT NULL, - products int(11) DEFAULT '0' NOT NULL, - teaser text NOT NULL, - headline varchar(255) DEFAULT '' NOT NULL, - header_title varchar(255) DEFAULT '' NOT NULL, - header_subtitle varchar(255) DEFAULT '' NOT NULL, - teaser_images int(11) unsigned NOT NULL default '0', - header_images int(11) unsigned NOT NULL default '0', + sorting int(11) DEFAULT '0' NOT NULL, + bus_pro_id int(11) DEFAULT '0' NOT NULL, + name varchar(255) DEFAULT '' NOT NULL, + code varchar(255) DEFAULT '' NOT NULL, + description text NOT NULL, + description_extended text NOT NULL, + detail_page varchar(255) DEFAULT '' NOT NULL, + products int(11) DEFAULT '0' NOT NULL, + teaser text NOT NULL, + headline varchar(255) DEFAULT '' NOT NULL, + header_title varchar(255) DEFAULT '' NOT NULL, + header_subtitle varchar(255) DEFAULT '' NOT NULL, + teaser_images int(11) unsigned NOT NULL default '0', + header_images int(11) unsigned NOT NULL default '0', - tstamp int(11) unsigned DEFAULT '0' NOT NULL, - crdate int(11) unsigned DEFAULT '0' NOT NULL, - cruser_id int(11) unsigned DEFAULT '0' NOT NULL, - deleted tinyint(4) unsigned DEFAULT '0' NOT NULL, - hidden tinyint(4) unsigned DEFAULT '0' NOT NULL, - starttime int(11) unsigned DEFAULT '0' NOT NULL, - endtime int(11) unsigned DEFAULT '0' NOT NULL, + tstamp int(11) unsigned DEFAULT '0' NOT NULL, + crdate int(11) unsigned DEFAULT '0' NOT NULL, + cruser_id int(11) unsigned DEFAULT '0' NOT NULL, + deleted tinyint(4) unsigned DEFAULT '0' NOT NULL, + hidden tinyint(4) unsigned DEFAULT '0' NOT NULL, + starttime int(11) unsigned DEFAULT '0' NOT NULL, + endtime int(11) unsigned DEFAULT '0' NOT NULL, - t3ver_oid int(11) DEFAULT '0' NOT NULL, - t3ver_id int(11) DEFAULT '0' NOT NULL, - t3ver_wsid int(11) DEFAULT '0' NOT NULL, - t3ver_label varchar(255) DEFAULT '' NOT NULL, - t3ver_state tinyint(4) DEFAULT '0' NOT NULL, - t3ver_stage int(11) DEFAULT '0' NOT NULL, - t3ver_count int(11) DEFAULT '0' NOT NULL, - t3ver_tstamp int(11) DEFAULT '0' NOT NULL, - t3ver_move_id int(11) DEFAULT '0' NOT NULL, + t3ver_oid int(11) DEFAULT '0' NOT NULL, + t3ver_id int(11) DEFAULT '0' NOT NULL, + t3ver_wsid int(11) DEFAULT '0' NOT NULL, + t3ver_label varchar(255) DEFAULT '' NOT NULL, + t3ver_state tinyint(4) DEFAULT '0' NOT NULL, + t3ver_stage int(11) DEFAULT '0' NOT NULL, + t3ver_count int(11) DEFAULT '0' NOT NULL, + t3ver_tstamp int(11) DEFAULT '0' NOT NULL, + t3ver_move_id int(11) DEFAULT '0' NOT NULL, - sys_language_uid int(11) DEFAULT '0' NOT NULL, - l10n_parent int(11) DEFAULT '0' NOT NULL, - l10n_diffsource mediumblob, + sys_language_uid int(11) DEFAULT '0' NOT NULL, + l10n_parent int(11) DEFAULT '0' NOT NULL, + l10n_diffsource mediumblob, - PRIMARY KEY (uid), - KEY parent (pid), - KEY t3ver_oid (t3ver_oid,t3ver_wsid), - KEY language (l10n_parent,sys_language_uid) + PRIMARY KEY (uid), + KEY parent (pid), + KEY t3ver_oid (t3ver_oid, t3ver_wsid), + KEY language (l10n_parent, sys_language_uid) ); # # Table structure for table 'tx_epproducts_domain_model_country' # -CREATE TABLE tx_epproducts_domain_model_country ( +CREATE TABLE tx_epproducts_domain_model_country +( - uid int(11) NOT NULL auto_increment, - pid int(11) DEFAULT '0' NOT NULL, + uid int(11) NOT NULL auto_increment, + pid int(11) DEFAULT '0' NOT NULL, - detail_page varchar(255) DEFAULT '' NOT NULL, - code char(2) DEFAULT '' NOT NULL, - name varchar(255) DEFAULT '' NOT NULL, - name_internal varchar(255) DEFAULT '' NOT NULL, - season char(1) DEFAULT '' NOT NULL, - headline varchar(255) DEFAULT '' NOT NULL, - teaser text NOT NULL, - header_title varchar(255) DEFAULT '' NOT NULL, - header_subtitle varchar(255) DEFAULT '' NOT NULL, - keywords text NOT NULL, - description text NOT NULL, - description_extended text NOT NULL, - teaser_images int(11) unsigned NOT NULL default '0', - header_images int(11) unsigned NOT NULL default '0', - images int(11) unsigned NOT NULL default '0', - latitude varchar(255) DEFAULT '' NOT NULL, - longitude varchar(255) DEFAULT '' NOT NULL, - facts int(11) unsigned DEFAULT '0' NOT NULL, - officetip int(11) unsigned DEFAULT '0' NOT NULL, - snowreport int(11) unsigned DEFAULT '0' NOT NULL, + detail_page varchar(255) DEFAULT '' NOT NULL, + code char(2) DEFAULT '' NOT NULL, + name varchar(255) DEFAULT '' NOT NULL, + name_internal varchar(255) DEFAULT '' NOT NULL, + season char(1) DEFAULT '' NOT NULL, + headline varchar(255) DEFAULT '' NOT NULL, + teaser text NOT NULL, + header_title varchar(255) DEFAULT '' NOT NULL, + header_subtitle varchar(255) DEFAULT '' NOT NULL, + keywords text NOT NULL, + description text NOT NULL, + description_extended text NOT NULL, + teaser_images int(11) unsigned NOT NULL default '0', + header_images int(11) unsigned NOT NULL default '0', + images int(11) unsigned NOT NULL default '0', + latitude varchar(255) DEFAULT '' NOT NULL, + longitude varchar(255) DEFAULT '' NOT NULL, + facts int(11) unsigned DEFAULT '0' NOT NULL, + officetip int(11) unsigned DEFAULT '0' NOT NULL, + snowreport int(11) unsigned DEFAULT '0' NOT NULL, - tstamp int(11) unsigned DEFAULT '0' NOT NULL, - crdate int(11) unsigned DEFAULT '0' NOT NULL, - cruser_id int(11) unsigned DEFAULT '0' NOT NULL, - deleted tinyint(4) unsigned DEFAULT '0' NOT NULL, - hidden tinyint(4) unsigned DEFAULT '0' NOT NULL, - starttime int(11) unsigned DEFAULT '0' NOT NULL, - endtime int(11) unsigned DEFAULT '0' NOT NULL, + tstamp int(11) unsigned DEFAULT '0' NOT NULL, + crdate int(11) unsigned DEFAULT '0' NOT NULL, + cruser_id int(11) unsigned DEFAULT '0' NOT NULL, + deleted tinyint(4) unsigned DEFAULT '0' NOT NULL, + hidden tinyint(4) unsigned DEFAULT '0' NOT NULL, + starttime int(11) unsigned DEFAULT '0' NOT NULL, + endtime int(11) unsigned DEFAULT '0' NOT NULL, - t3ver_oid int(11) DEFAULT '0' NOT NULL, - t3ver_id int(11) DEFAULT '0' NOT NULL, - t3ver_wsid int(11) DEFAULT '0' NOT NULL, - t3ver_label varchar(255) DEFAULT '' NOT NULL, - t3ver_state tinyint(4) DEFAULT '0' NOT NULL, - t3ver_stage int(11) DEFAULT '0' NOT NULL, - t3ver_count int(11) DEFAULT '0' NOT NULL, - t3ver_tstamp int(11) DEFAULT '0' NOT NULL, - t3ver_move_id int(11) DEFAULT '0' NOT NULL, + t3ver_oid int(11) DEFAULT '0' NOT NULL, + t3ver_id int(11) DEFAULT '0' NOT NULL, + t3ver_wsid int(11) DEFAULT '0' NOT NULL, + t3ver_label varchar(255) DEFAULT '' NOT NULL, + t3ver_state tinyint(4) DEFAULT '0' NOT NULL, + t3ver_stage int(11) DEFAULT '0' NOT NULL, + t3ver_count int(11) DEFAULT '0' NOT NULL, + t3ver_tstamp int(11) DEFAULT '0' NOT NULL, + t3ver_move_id int(11) DEFAULT '0' NOT NULL, - sys_language_uid int(11) DEFAULT '0' NOT NULL, - l10n_parent int(11) DEFAULT '0' NOT NULL, - l10n_diffsource mediumblob, + sys_language_uid int(11) DEFAULT '0' NOT NULL, + l10n_parent int(11) DEFAULT '0' NOT NULL, + l10n_diffsource mediumblob, - PRIMARY KEY (uid), - KEY parent (pid), - KEY t3ver_oid (t3ver_oid,t3ver_wsid), - KEY language (l10n_parent,sys_language_uid) + PRIMARY KEY (uid), + KEY parent (pid), + KEY t3ver_oid (t3ver_oid, t3ver_wsid), + KEY language (l10n_parent, sys_language_uid) ); # # Table structure for table 'tx_epproducts_domain_model_region' # -CREATE TABLE tx_epproducts_domain_model_region ( +CREATE TABLE tx_epproducts_domain_model_region +( - uid int(11) NOT NULL auto_increment, - pid int(11) DEFAULT '0' NOT NULL, + uid int(11) NOT NULL auto_increment, + pid int(11) DEFAULT '0' NOT NULL, - detail_page varchar(255) DEFAULT '' NOT NULL, - exclude_from_teasergroups tinyint(4) unsigned DEFAULT '0' NOT NULL, - name varchar(255) DEFAULT '' NOT NULL, - name_internal varchar(255) DEFAULT '' NOT NULL, - season char(1) DEFAULT '' NOT NULL, - headline varchar(255) DEFAULT '' NOT NULL, - teaser text NOT NULL, - header_title varchar(255) DEFAULT '' NOT NULL, - header_subtitle varchar(255) DEFAULT '' NOT NULL, - keywords text NOT NULL, - description text NOT NULL, - ski_area text NOT NULL, - ski_area_extended text NOT NULL, - ski_pass text NOT NULL, - news text NOT NULL, - length varchar(255) DEFAULT '' NOT NULL, - height varchar(255) DEFAULT '' NOT NULL, - lifts varchar(255) DEFAULT '' NOT NULL, - feature varchar(255) DEFAULT '' NOT NULL, - teaser_images int(11) unsigned NOT NULL default '0', - header_images int(11) unsigned NOT NULL default '0', - images int(11) unsigned NOT NULL default '0', - region_maps int(11) unsigned NOT NULL default '0', - latitude varchar(255) DEFAULT '' NOT NULL, - longitude varchar(255) DEFAULT '' NOT NULL, - country int(11) unsigned DEFAULT '0', - cities int(11) unsigned DEFAULT '0' NOT NULL, - products int(11) unsigned DEFAULT '0' NOT NULL, - facts int(11) unsigned DEFAULT '0' NOT NULL, - hotels int(11) unsigned DEFAULT '0' NOT NULL, - snowreport int(11) unsigned DEFAULT '0', - webcam int(11) unsigned DEFAULT '0', - officetip int(11) unsigned DEFAULT '0', - award_image int(11) unsigned NOT NULL default '0', - award_link varchar(255) DEFAULT '' NOT NULL, - award_label varchar(255) DEFAULT '' NOT NULL, + detail_page varchar(255) DEFAULT '' NOT NULL, + exclude_from_teasergroups tinyint(4) unsigned DEFAULT '0' NOT NULL, + name varchar(255) DEFAULT '' NOT NULL, + name_internal varchar(255) DEFAULT '' NOT NULL, + season char(1) DEFAULT '' NOT NULL, + headline varchar(255) DEFAULT '' NOT NULL, + teaser text NOT NULL, + header_title varchar(255) DEFAULT '' NOT NULL, + header_subtitle varchar(255) DEFAULT '' NOT NULL, + keywords text NOT NULL, + description text NOT NULL, + ski_area text NOT NULL, + ski_area_extended text NOT NULL, + ski_pass text NOT NULL, + news text NOT NULL, + length varchar(255) DEFAULT '' NOT NULL, + height varchar(255) DEFAULT '' NOT NULL, + lifts varchar(255) DEFAULT '' NOT NULL, + feature varchar(255) DEFAULT '' NOT NULL, + teaser_images int(11) unsigned NOT NULL default '0', + header_images int(11) unsigned NOT NULL default '0', + images int(11) unsigned NOT NULL default '0', + region_maps int(11) unsigned NOT NULL default '0', + latitude varchar(255) DEFAULT '' NOT NULL, + longitude varchar(255) DEFAULT '' NOT NULL, + country int(11) unsigned DEFAULT '0', + cities int(11) unsigned DEFAULT '0' NOT NULL, + products int(11) unsigned DEFAULT '0' NOT NULL, + facts int(11) unsigned DEFAULT '0' NOT NULL, + hotels int(11) unsigned DEFAULT '0' NOT NULL, + snowreport int(11) unsigned DEFAULT '0', + webcam int(11) unsigned DEFAULT '0', + officetip int(11) unsigned DEFAULT '0', + award_image int(11) unsigned NOT NULL default '0', + award_link varchar(255) DEFAULT '' NOT NULL, + award_label varchar(255) DEFAULT '' NOT NULL, - tstamp int(11) unsigned DEFAULT '0' NOT NULL, - crdate int(11) unsigned DEFAULT '0' NOT NULL, - cruser_id int(11) unsigned DEFAULT '0' NOT NULL, - deleted tinyint(4) unsigned DEFAULT '0' NOT NULL, - hidden tinyint(4) unsigned DEFAULT '0' NOT NULL, - starttime int(11) unsigned DEFAULT '0' NOT NULL, - endtime int(11) unsigned DEFAULT '0' NOT NULL, + tstamp int(11) unsigned DEFAULT '0' NOT NULL, + crdate int(11) unsigned DEFAULT '0' NOT NULL, + cruser_id int(11) unsigned DEFAULT '0' NOT NULL, + deleted tinyint(4) unsigned DEFAULT '0' NOT NULL, + hidden tinyint(4) unsigned DEFAULT '0' NOT NULL, + starttime int(11) unsigned DEFAULT '0' NOT NULL, + endtime int(11) unsigned DEFAULT '0' NOT NULL, - t3ver_oid int(11) DEFAULT '0' NOT NULL, - t3ver_id int(11) DEFAULT '0' NOT NULL, - t3ver_wsid int(11) DEFAULT '0' NOT NULL, - t3ver_label varchar(255) DEFAULT '' NOT NULL, - t3ver_state tinyint(4) DEFAULT '0' NOT NULL, - t3ver_stage int(11) DEFAULT '0' NOT NULL, - t3ver_count int(11) DEFAULT '0' NOT NULL, - t3ver_tstamp int(11) DEFAULT '0' NOT NULL, - t3ver_move_id int(11) DEFAULT '0' NOT NULL, + t3ver_oid int(11) DEFAULT '0' NOT NULL, + t3ver_id int(11) DEFAULT '0' NOT NULL, + t3ver_wsid int(11) DEFAULT '0' NOT NULL, + t3ver_label varchar(255) DEFAULT '' NOT NULL, + t3ver_state tinyint(4) DEFAULT '0' NOT NULL, + t3ver_stage int(11) DEFAULT '0' NOT NULL, + t3ver_count int(11) DEFAULT '0' NOT NULL, + t3ver_tstamp int(11) DEFAULT '0' NOT NULL, + t3ver_move_id int(11) DEFAULT '0' NOT NULL, - sys_language_uid int(11) DEFAULT '0' NOT NULL, - l10n_parent int(11) DEFAULT '0' NOT NULL, - l10n_diffsource mediumblob, + sys_language_uid int(11) DEFAULT '0' NOT NULL, + l10n_parent int(11) DEFAULT '0' NOT NULL, + l10n_diffsource mediumblob, - PRIMARY KEY (uid), - KEY parent (pid), - KEY t3ver_oid (t3ver_oid,t3ver_wsid), - KEY language (l10n_parent,sys_language_uid) + PRIMARY KEY (uid), + KEY parent (pid), + KEY t3ver_oid (t3ver_oid, t3ver_wsid), + KEY language (l10n_parent, sys_language_uid) ); # # Table structure for table 'tx_epproducts_domain_model_city' # -CREATE TABLE tx_epproducts_domain_model_city ( +CREATE TABLE tx_epproducts_domain_model_city +( - uid int(11) NOT NULL auto_increment, - pid int(11) DEFAULT '0' NOT NULL, + uid int(11) NOT NULL auto_increment, + pid int(11) DEFAULT '0' NOT NULL, - detail_page varchar(255) DEFAULT '' NOT NULL, - exclude_from_teasergroups tinyint(4) unsigned DEFAULT '0' NOT NULL, - name varchar(255) DEFAULT '' NOT NULL, - name_internal varchar(255) DEFAULT '' NOT NULL, - season char(1) DEFAULT '' NOT NULL, - headline varchar(255) DEFAULT '' NOT NULL, - teaser text NOT NULL, - header_title varchar(255) DEFAULT '' NOT NULL, - header_subtitle varchar(255) DEFAULT '' NOT NULL, - keywords text NOT NULL, - description text NOT NULL, - party text NOT NULL, - leisure text NOT NULL, - teaser_images int(11) unsigned NOT NULL default '0', - header_images int(11) unsigned NOT NULL default '0', - images int(11) unsigned NOT NULL default '0', - latitude varchar(255) DEFAULT '' NOT NULL, - longitude varchar(255) DEFAULT '' NOT NULL, - country int(11) unsigned DEFAULT '0', - region int(11) unsigned DEFAULT '0', - officetip int(11) unsigned DEFAULT '0', - facts int(11) unsigned DEFAULT '0' NOT NULL, + detail_page varchar(255) DEFAULT '' NOT NULL, + exclude_from_teasergroups tinyint(4) unsigned DEFAULT '0' NOT NULL, + name varchar(255) DEFAULT '' NOT NULL, + name_internal varchar(255) DEFAULT '' NOT NULL, + season char(1) DEFAULT '' NOT NULL, + headline varchar(255) DEFAULT '' NOT NULL, + teaser text NOT NULL, + header_title varchar(255) DEFAULT '' NOT NULL, + header_subtitle varchar(255) DEFAULT '' NOT NULL, + keywords text NOT NULL, + description text NOT NULL, + party text NOT NULL, + leisure text NOT NULL, + teaser_images int(11) unsigned NOT NULL default '0', + header_images int(11) unsigned NOT NULL default '0', + images int(11) unsigned NOT NULL default '0', + latitude varchar(255) DEFAULT '' NOT NULL, + longitude varchar(255) DEFAULT '' NOT NULL, + country int(11) unsigned DEFAULT '0', + region int(11) unsigned DEFAULT '0', + officetip int(11) unsigned DEFAULT '0', + facts int(11) unsigned DEFAULT '0' NOT NULL, - tstamp int(11) unsigned DEFAULT '0' NOT NULL, - crdate int(11) unsigned DEFAULT '0' NOT NULL, - cruser_id int(11) unsigned DEFAULT '0' NOT NULL, - deleted tinyint(4) unsigned DEFAULT '0' NOT NULL, - hidden tinyint(4) unsigned DEFAULT '0' NOT NULL, - starttime int(11) unsigned DEFAULT '0' NOT NULL, - endtime int(11) unsigned DEFAULT '0' NOT NULL, + tstamp int(11) unsigned DEFAULT '0' NOT NULL, + crdate int(11) unsigned DEFAULT '0' NOT NULL, + cruser_id int(11) unsigned DEFAULT '0' NOT NULL, + deleted tinyint(4) unsigned DEFAULT '0' NOT NULL, + hidden tinyint(4) unsigned DEFAULT '0' NOT NULL, + starttime int(11) unsigned DEFAULT '0' NOT NULL, + endtime int(11) unsigned DEFAULT '0' NOT NULL, - t3ver_oid int(11) DEFAULT '0' NOT NULL, - t3ver_id int(11) DEFAULT '0' NOT NULL, - t3ver_wsid int(11) DEFAULT '0' NOT NULL, - t3ver_label varchar(255) DEFAULT '' NOT NULL, - t3ver_state tinyint(4) DEFAULT '0' NOT NULL, - t3ver_stage int(11) DEFAULT '0' NOT NULL, - t3ver_count int(11) DEFAULT '0' NOT NULL, - t3ver_tstamp int(11) DEFAULT '0' NOT NULL, - t3ver_move_id int(11) DEFAULT '0' NOT NULL, + t3ver_oid int(11) DEFAULT '0' NOT NULL, + t3ver_id int(11) DEFAULT '0' NOT NULL, + t3ver_wsid int(11) DEFAULT '0' NOT NULL, + t3ver_label varchar(255) DEFAULT '' NOT NULL, + t3ver_state tinyint(4) DEFAULT '0' NOT NULL, + t3ver_stage int(11) DEFAULT '0' NOT NULL, + t3ver_count int(11) DEFAULT '0' NOT NULL, + t3ver_tstamp int(11) DEFAULT '0' NOT NULL, + t3ver_move_id int(11) DEFAULT '0' NOT NULL, - sys_language_uid int(11) DEFAULT '0' NOT NULL, - l10n_parent int(11) DEFAULT '0' NOT NULL, - l10n_diffsource mediumblob, + sys_language_uid int(11) DEFAULT '0' NOT NULL, + l10n_parent int(11) DEFAULT '0' NOT NULL, + l10n_diffsource mediumblob, - PRIMARY KEY (uid), - KEY parent (pid), - KEY t3ver_oid (t3ver_oid,t3ver_wsid), - KEY language (l10n_parent,sys_language_uid) + PRIMARY KEY (uid), + KEY parent (pid), + KEY t3ver_oid (t3ver_oid, t3ver_wsid), + KEY language (l10n_parent, sys_language_uid) ); # # Table structure for table 'tx_epproducts_domain_model_fact' # -CREATE TABLE tx_epproducts_domain_model_fact ( +CREATE TABLE tx_epproducts_domain_model_fact +( - uid int(11) NOT NULL auto_increment, - pid int(11) DEFAULT '0' NOT NULL, + uid int(11) NOT NULL auto_increment, + pid int(11) DEFAULT '0' NOT NULL, - label varchar(255) DEFAULT '' NOT NULL, - name varchar(255) DEFAULT '' NOT NULL, - keywords text NOT NULL, + label varchar(255) DEFAULT '' NOT NULL, + name varchar(255) DEFAULT '' NOT NULL, + keywords text NOT NULL, - tstamp int(11) unsigned DEFAULT '0' NOT NULL, - crdate int(11) unsigned DEFAULT '0' NOT NULL, - cruser_id int(11) unsigned DEFAULT '0' NOT NULL, - deleted tinyint(4) unsigned DEFAULT '0' NOT NULL, - hidden tinyint(4) unsigned DEFAULT '0' NOT NULL, - starttime int(11) unsigned DEFAULT '0' NOT NULL, - endtime int(11) unsigned DEFAULT '0' NOT NULL, + tstamp int(11) unsigned DEFAULT '0' NOT NULL, + crdate int(11) unsigned DEFAULT '0' NOT NULL, + cruser_id int(11) unsigned DEFAULT '0' NOT NULL, + deleted tinyint(4) unsigned DEFAULT '0' NOT NULL, + hidden tinyint(4) unsigned DEFAULT '0' NOT NULL, + starttime int(11) unsigned DEFAULT '0' NOT NULL, + endtime int(11) unsigned DEFAULT '0' NOT NULL, - t3ver_oid int(11) DEFAULT '0' NOT NULL, - t3ver_id int(11) DEFAULT '0' NOT NULL, - t3ver_wsid int(11) DEFAULT '0' NOT NULL, - t3ver_label varchar(255) DEFAULT '' NOT NULL, - t3ver_state tinyint(4) DEFAULT '0' NOT NULL, - t3ver_stage int(11) DEFAULT '0' NOT NULL, - t3ver_count int(11) DEFAULT '0' NOT NULL, - t3ver_tstamp int(11) DEFAULT '0' NOT NULL, - t3ver_move_id int(11) DEFAULT '0' NOT NULL, + t3ver_oid int(11) DEFAULT '0' NOT NULL, + t3ver_id int(11) DEFAULT '0' NOT NULL, + t3ver_wsid int(11) DEFAULT '0' NOT NULL, + t3ver_label varchar(255) DEFAULT '' NOT NULL, + t3ver_state tinyint(4) DEFAULT '0' NOT NULL, + t3ver_stage int(11) DEFAULT '0' NOT NULL, + t3ver_count int(11) DEFAULT '0' NOT NULL, + t3ver_tstamp int(11) DEFAULT '0' NOT NULL, + t3ver_move_id int(11) DEFAULT '0' NOT NULL, - sys_language_uid int(11) DEFAULT '0' NOT NULL, - l10n_parent int(11) DEFAULT '0' NOT NULL, - l10n_diffsource mediumblob, + sys_language_uid int(11) DEFAULT '0' NOT NULL, + l10n_parent int(11) DEFAULT '0' NOT NULL, + l10n_diffsource mediumblob, - PRIMARY KEY (uid), - KEY parent (pid), - KEY t3ver_oid (t3ver_oid,t3ver_wsid), - KEY language (l10n_parent,sys_language_uid) + PRIMARY KEY (uid), + KEY parent (pid), + KEY t3ver_oid (t3ver_oid, t3ver_wsid), + KEY language (l10n_parent, sys_language_uid) ); # # Table structure for table 'tx_epproducts_domain_model_matchcode' # -CREATE TABLE tx_epproducts_domain_model_matchcode ( +CREATE TABLE tx_epproducts_domain_model_matchcode +( - uid int(11) NOT NULL auto_increment, - pid int(11) DEFAULT '0' NOT NULL, + uid int(11) NOT NULL auto_increment, + pid int(11) DEFAULT '0' NOT NULL, - code varchar(255) DEFAULT '' NOT NULL, - entity int(11) unsigned DEFAULT '0', - entity_type varchar(255) DEFAULT '' NOT NULL, + code varchar(255) DEFAULT '' NOT NULL, + entity int(11) unsigned DEFAULT '0', + entity_type varchar(255) DEFAULT '' NOT NULL, - tstamp int(11) unsigned DEFAULT '0' NOT NULL, - crdate int(11) unsigned DEFAULT '0' NOT NULL, - cruser_id int(11) unsigned DEFAULT '0' NOT NULL, - deleted tinyint(4) unsigned DEFAULT '0' NOT NULL, - hidden tinyint(4) unsigned DEFAULT '0' NOT NULL, - starttime int(11) unsigned DEFAULT '0' NOT NULL, - endtime int(11) unsigned DEFAULT '0' NOT NULL, + tstamp int(11) unsigned DEFAULT '0' NOT NULL, + crdate int(11) unsigned DEFAULT '0' NOT NULL, + cruser_id int(11) unsigned DEFAULT '0' NOT NULL, + deleted tinyint(4) unsigned DEFAULT '0' NOT NULL, + hidden tinyint(4) unsigned DEFAULT '0' NOT NULL, + starttime int(11) unsigned DEFAULT '0' NOT NULL, + endtime int(11) unsigned DEFAULT '0' NOT NULL, - t3ver_oid int(11) DEFAULT '0' NOT NULL, - t3ver_id int(11) DEFAULT '0' NOT NULL, - t3ver_wsid int(11) DEFAULT '0' NOT NULL, - t3ver_label varchar(255) DEFAULT '' NOT NULL, - t3ver_state tinyint(4) DEFAULT '0' NOT NULL, - t3ver_stage int(11) DEFAULT '0' NOT NULL, - t3ver_count int(11) DEFAULT '0' NOT NULL, - t3ver_tstamp int(11) DEFAULT '0' NOT NULL, - t3ver_move_id int(11) DEFAULT '0' NOT NULL, + t3ver_oid int(11) DEFAULT '0' NOT NULL, + t3ver_id int(11) DEFAULT '0' NOT NULL, + t3ver_wsid int(11) DEFAULT '0' NOT NULL, + t3ver_label varchar(255) DEFAULT '' NOT NULL, + t3ver_state tinyint(4) DEFAULT '0' NOT NULL, + t3ver_stage int(11) DEFAULT '0' NOT NULL, + t3ver_count int(11) DEFAULT '0' NOT NULL, + t3ver_tstamp int(11) DEFAULT '0' NOT NULL, + t3ver_move_id int(11) DEFAULT '0' NOT NULL, - sys_language_uid int(11) DEFAULT '0' NOT NULL, - l10n_parent int(11) DEFAULT '0' NOT NULL, - l10n_diffsource mediumblob, + sys_language_uid int(11) DEFAULT '0' NOT NULL, + l10n_parent int(11) DEFAULT '0' NOT NULL, + l10n_diffsource mediumblob, - PRIMARY KEY (uid), - KEY parent (pid), - KEY t3ver_oid (t3ver_oid,t3ver_wsid), - KEY language (l10n_parent,sys_language_uid) + PRIMARY KEY (uid), + KEY parent (pid), + KEY t3ver_oid (t3ver_oid, t3ver_wsid), + KEY language (l10n_parent, sys_language_uid) ); # # Table structure for table 'tx_epproducts_domain_model_faq' # -CREATE TABLE tx_epproducts_domain_model_faq ( +CREATE TABLE tx_epproducts_domain_model_faq +( - uid int(11) NOT NULL auto_increment, - pid int(11) DEFAULT '0' NOT NULL, + uid int(11) NOT NULL auto_increment, + pid int(11) DEFAULT '0' NOT NULL, - label varchar(255) DEFAULT '' NOT NULL, - question varchar(255) DEFAULT '' NOT NULL, - answer text NOT NULL, + label varchar(255) DEFAULT '' NOT NULL, + question varchar(255) DEFAULT '' NOT NULL, + answer text NOT NULL, - tstamp int(11) unsigned DEFAULT '0' NOT NULL, - crdate int(11) unsigned DEFAULT '0' NOT NULL, - cruser_id int(11) unsigned DEFAULT '0' NOT NULL, - deleted tinyint(4) unsigned DEFAULT '0' NOT NULL, - hidden tinyint(4) unsigned DEFAULT '0' NOT NULL, - starttime int(11) unsigned DEFAULT '0' NOT NULL, - endtime int(11) unsigned DEFAULT '0' NOT NULL, + tstamp int(11) unsigned DEFAULT '0' NOT NULL, + crdate int(11) unsigned DEFAULT '0' NOT NULL, + cruser_id int(11) unsigned DEFAULT '0' NOT NULL, + deleted tinyint(4) unsigned DEFAULT '0' NOT NULL, + hidden tinyint(4) unsigned DEFAULT '0' NOT NULL, + starttime int(11) unsigned DEFAULT '0' NOT NULL, + endtime int(11) unsigned DEFAULT '0' NOT NULL, - t3ver_oid int(11) DEFAULT '0' NOT NULL, - t3ver_id int(11) DEFAULT '0' NOT NULL, - t3ver_wsid int(11) DEFAULT '0' NOT NULL, - t3ver_label varchar(255) DEFAULT '' NOT NULL, - t3ver_state tinyint(4) DEFAULT '0' NOT NULL, - t3ver_stage int(11) DEFAULT '0' NOT NULL, - t3ver_count int(11) DEFAULT '0' NOT NULL, - t3ver_tstamp int(11) DEFAULT '0' NOT NULL, - t3ver_move_id int(11) DEFAULT '0' NOT NULL, + t3ver_oid int(11) DEFAULT '0' NOT NULL, + t3ver_id int(11) DEFAULT '0' NOT NULL, + t3ver_wsid int(11) DEFAULT '0' NOT NULL, + t3ver_label varchar(255) DEFAULT '' NOT NULL, + t3ver_state tinyint(4) DEFAULT '0' NOT NULL, + t3ver_stage int(11) DEFAULT '0' NOT NULL, + t3ver_count int(11) DEFAULT '0' NOT NULL, + t3ver_tstamp int(11) DEFAULT '0' NOT NULL, + t3ver_move_id int(11) DEFAULT '0' NOT NULL, - sys_language_uid int(11) DEFAULT '0' NOT NULL, - l10n_parent int(11) DEFAULT '0' NOT NULL, - l10n_diffsource mediumblob, + sys_language_uid int(11) DEFAULT '0' NOT NULL, + l10n_parent int(11) DEFAULT '0' NOT NULL, + l10n_diffsource mediumblob, - PRIMARY KEY (uid), - KEY parent (pid), - KEY t3ver_oid (t3ver_oid,t3ver_wsid), - KEY language (l10n_parent,sys_language_uid) + PRIMARY KEY (uid), + KEY parent (pid), + KEY t3ver_oid (t3ver_oid, t3ver_wsid), + KEY language (l10n_parent, sys_language_uid) ); # # Table structure for table 'tx_epproducts_domain_model_officetip' # -CREATE TABLE tx_epproducts_domain_model_officetip ( +CREATE TABLE tx_epproducts_domain_model_officetip +( - uid int(11) NOT NULL auto_increment, - pid int(11) DEFAULT '0' NOT NULL, + uid int(11) NOT NULL auto_increment, + pid int(11) DEFAULT '0' NOT NULL, - label varchar(255) DEFAULT '' NOT NULL, - text text NOT NULL, - author int(11) unsigned DEFAULT '0', + label varchar(255) DEFAULT '' NOT NULL, + text text NOT NULL, + author int(11) unsigned DEFAULT '0', - tstamp int(11) unsigned DEFAULT '0' NOT NULL, - crdate int(11) unsigned DEFAULT '0' NOT NULL, - cruser_id int(11) unsigned DEFAULT '0' NOT NULL, - deleted tinyint(4) unsigned DEFAULT '0' NOT NULL, - hidden tinyint(4) unsigned DEFAULT '0' NOT NULL, - starttime int(11) unsigned DEFAULT '0' NOT NULL, - endtime int(11) unsigned DEFAULT '0' NOT NULL, + tstamp int(11) unsigned DEFAULT '0' NOT NULL, + crdate int(11) unsigned DEFAULT '0' NOT NULL, + cruser_id int(11) unsigned DEFAULT '0' NOT NULL, + deleted tinyint(4) unsigned DEFAULT '0' NOT NULL, + hidden tinyint(4) unsigned DEFAULT '0' NOT NULL, + starttime int(11) unsigned DEFAULT '0' NOT NULL, + endtime int(11) unsigned DEFAULT '0' NOT NULL, - t3ver_oid int(11) DEFAULT '0' NOT NULL, - t3ver_id int(11) DEFAULT '0' NOT NULL, - t3ver_wsid int(11) DEFAULT '0' NOT NULL, - t3ver_label varchar(255) DEFAULT '' NOT NULL, - t3ver_state tinyint(4) DEFAULT '0' NOT NULL, - t3ver_stage int(11) DEFAULT '0' NOT NULL, - t3ver_count int(11) DEFAULT '0' NOT NULL, - t3ver_tstamp int(11) DEFAULT '0' NOT NULL, - t3ver_move_id int(11) DEFAULT '0' NOT NULL, + t3ver_oid int(11) DEFAULT '0' NOT NULL, + t3ver_id int(11) DEFAULT '0' NOT NULL, + t3ver_wsid int(11) DEFAULT '0' NOT NULL, + t3ver_label varchar(255) DEFAULT '' NOT NULL, + t3ver_state tinyint(4) DEFAULT '0' NOT NULL, + t3ver_stage int(11) DEFAULT '0' NOT NULL, + t3ver_count int(11) DEFAULT '0' NOT NULL, + t3ver_tstamp int(11) DEFAULT '0' NOT NULL, + t3ver_move_id int(11) DEFAULT '0' NOT NULL, - sys_language_uid int(11) DEFAULT '0' NOT NULL, - l10n_parent int(11) DEFAULT '0' NOT NULL, - l10n_diffsource mediumblob, + sys_language_uid int(11) DEFAULT '0' NOT NULL, + l10n_parent int(11) DEFAULT '0' NOT NULL, + l10n_diffsource mediumblob, - PRIMARY KEY (uid), - KEY parent (pid), - KEY t3ver_oid (t3ver_oid,t3ver_wsid), - KEY language (l10n_parent,sys_language_uid) + PRIMARY KEY (uid), + KEY parent (pid), + KEY t3ver_oid (t3ver_oid, t3ver_wsid), + KEY language (l10n_parent, sys_language_uid) ); # # Table structure for table 'tx_epproducts_domain_model_teammember' # -CREATE TABLE tx_epproducts_domain_model_teammember ( +CREATE TABLE tx_epproducts_domain_model_teammember +( - uid int(11) NOT NULL auto_increment, - pid int(11) DEFAULT '0' NOT NULL, + uid int(11) NOT NULL auto_increment, + pid int(11) DEFAULT '0' NOT NULL, - name varchar(255) DEFAULT '' NOT NULL, - email varchar(255) DEFAULT '' NOT NULL, - phone varchar(255) DEFAULT '' NOT NULL, - tasks varchar(255) DEFAULT '' NOT NULL, - description text NOT NULL, - image int(11) DEFAULT '0' NOT NULL, - sorting int(11) DEFAULT '0' NOT NULL, + name varchar(255) DEFAULT '' NOT NULL, + email varchar(255) DEFAULT '' NOT NULL, + phone varchar(255) DEFAULT '' NOT NULL, + tasks varchar(255) DEFAULT '' NOT NULL, + description text NOT NULL, + image int(11) DEFAULT '0' NOT NULL, + sorting int(11) DEFAULT '0' NOT NULL, - tstamp int(11) unsigned DEFAULT '0' NOT NULL, - crdate int(11) unsigned DEFAULT '0' NOT NULL, - cruser_id int(11) unsigned DEFAULT '0' NOT NULL, - deleted tinyint(4) unsigned DEFAULT '0' NOT NULL, - hidden tinyint(4) unsigned DEFAULT '0' NOT NULL, - starttime int(11) unsigned DEFAULT '0' NOT NULL, - endtime int(11) unsigned DEFAULT '0' NOT NULL, + tstamp int(11) unsigned DEFAULT '0' NOT NULL, + crdate int(11) unsigned DEFAULT '0' NOT NULL, + cruser_id int(11) unsigned DEFAULT '0' NOT NULL, + deleted tinyint(4) unsigned DEFAULT '0' NOT NULL, + hidden tinyint(4) unsigned DEFAULT '0' NOT NULL, + starttime int(11) unsigned DEFAULT '0' NOT NULL, + endtime int(11) unsigned DEFAULT '0' NOT NULL, - t3ver_oid int(11) DEFAULT '0' NOT NULL, - t3ver_id int(11) DEFAULT '0' NOT NULL, - t3ver_wsid int(11) DEFAULT '0' NOT NULL, - t3ver_label varchar(255) DEFAULT '' NOT NULL, - t3ver_state tinyint(4) DEFAULT '0' NOT NULL, - t3ver_stage int(11) DEFAULT '0' NOT NULL, - t3ver_count int(11) DEFAULT '0' NOT NULL, - t3ver_tstamp int(11) DEFAULT '0' NOT NULL, - t3ver_move_id int(11) DEFAULT '0' NOT NULL, + t3ver_oid int(11) DEFAULT '0' NOT NULL, + t3ver_id int(11) DEFAULT '0' NOT NULL, + t3ver_wsid int(11) DEFAULT '0' NOT NULL, + t3ver_label varchar(255) DEFAULT '' NOT NULL, + t3ver_state tinyint(4) DEFAULT '0' NOT NULL, + t3ver_stage int(11) DEFAULT '0' NOT NULL, + t3ver_count int(11) DEFAULT '0' NOT NULL, + t3ver_tstamp int(11) DEFAULT '0' NOT NULL, + t3ver_move_id int(11) DEFAULT '0' NOT NULL, - sys_language_uid int(11) DEFAULT '0' NOT NULL, - l10n_parent int(11) DEFAULT '0' NOT NULL, - l10n_diffsource mediumblob, + sys_language_uid int(11) DEFAULT '0' NOT NULL, + l10n_parent int(11) DEFAULT '0' NOT NULL, + l10n_diffsource mediumblob, - PRIMARY KEY (uid), - KEY parent (pid), - KEY t3ver_oid (t3ver_oid,t3ver_wsid), - KEY language (l10n_parent,sys_language_uid) + PRIMARY KEY (uid), + KEY parent (pid), + KEY t3ver_oid (t3ver_oid, t3ver_wsid), + KEY language (l10n_parent, sys_language_uid) ); # # Table structure for table 'tx_epproducts_domain_model_journey' # -CREATE TABLE tx_epproducts_domain_model_journey ( +CREATE TABLE tx_epproducts_domain_model_journey +( - uid int(11) NOT NULL auto_increment, - pid int(11) DEFAULT '0' NOT NULL, + uid int(11) NOT NULL auto_increment, + pid int(11) DEFAULT '0' NOT NULL, - name varchar(255) DEFAULT '' NOT NULL, - by_car text NOT NULL, - by_bus text NOT NULL, - image int(11) DEFAULT '0' NOT NULL, + name varchar(255) DEFAULT '' NOT NULL, + by_car text NOT NULL, + by_bus text NOT NULL, + image int(11) DEFAULT '0' NOT NULL, - tstamp int(11) unsigned DEFAULT '0' NOT NULL, - crdate int(11) unsigned DEFAULT '0' NOT NULL, - cruser_id int(11) unsigned DEFAULT '0' NOT NULL, - deleted tinyint(4) unsigned DEFAULT '0' NOT NULL, - hidden tinyint(4) unsigned DEFAULT '0' NOT NULL, - starttime int(11) unsigned DEFAULT '0' NOT NULL, - endtime int(11) unsigned DEFAULT '0' NOT NULL, + tstamp int(11) unsigned DEFAULT '0' NOT NULL, + crdate int(11) unsigned DEFAULT '0' NOT NULL, + cruser_id int(11) unsigned DEFAULT '0' NOT NULL, + deleted tinyint(4) unsigned DEFAULT '0' NOT NULL, + hidden tinyint(4) unsigned DEFAULT '0' NOT NULL, + starttime int(11) unsigned DEFAULT '0' NOT NULL, + endtime int(11) unsigned DEFAULT '0' NOT NULL, - t3ver_oid int(11) DEFAULT '0' NOT NULL, - t3ver_id int(11) DEFAULT '0' NOT NULL, - t3ver_wsid int(11) DEFAULT '0' NOT NULL, - t3ver_label varchar(255) DEFAULT '' NOT NULL, - t3ver_state tinyint(4) DEFAULT '0' NOT NULL, - t3ver_stage int(11) DEFAULT '0' NOT NULL, - t3ver_count int(11) DEFAULT '0' NOT NULL, - t3ver_tstamp int(11) DEFAULT '0' NOT NULL, - t3ver_move_id int(11) DEFAULT '0' NOT NULL, + t3ver_oid int(11) DEFAULT '0' NOT NULL, + t3ver_id int(11) DEFAULT '0' NOT NULL, + t3ver_wsid int(11) DEFAULT '0' NOT NULL, + t3ver_label varchar(255) DEFAULT '' NOT NULL, + t3ver_state tinyint(4) DEFAULT '0' NOT NULL, + t3ver_stage int(11) DEFAULT '0' NOT NULL, + t3ver_count int(11) DEFAULT '0' NOT NULL, + t3ver_tstamp int(11) DEFAULT '0' NOT NULL, + t3ver_move_id int(11) DEFAULT '0' NOT NULL, - sys_language_uid int(11) DEFAULT '0' NOT NULL, - l10n_parent int(11) DEFAULT '0' NOT NULL, - l10n_diffsource mediumblob, + sys_language_uid int(11) DEFAULT '0' NOT NULL, + l10n_parent int(11) DEFAULT '0' NOT NULL, + l10n_diffsource mediumblob, - PRIMARY KEY (uid), - KEY parent (pid), - KEY t3ver_oid (t3ver_oid,t3ver_wsid), - KEY language (l10n_parent,sys_language_uid) + PRIMARY KEY (uid), + KEY parent (pid), + KEY t3ver_oid (t3ver_oid, t3ver_wsid), + KEY language (l10n_parent, sys_language_uid) ); # # Table structure for table 'tx_epproducts_domain_model_snowreport' # -CREATE TABLE tx_epproducts_domain_model_snowreport ( +CREATE TABLE tx_epproducts_domain_model_snowreport +( - uid int(11) NOT NULL auto_increment, - pid int(11) DEFAULT '0' NOT NULL, + uid int(11) NOT NULL auto_increment, + pid int(11) DEFAULT '0' NOT NULL, - vendor_uid int(11) unsigned DEFAULT '0', - region_name varchar(255) DEFAULT '' NOT NULL, - glacier tinyint(4) unsigned DEFAULT '0' NOT NULL, - alpes tinyint(4) unsigned DEFAULT '0' NOT NULL, - height_max int(11) DEFAULT '0' NOT NULL, - height_min int(11) DEFAULT '0' NOT NULL, - opened tinyint(4) unsigned DEFAULT '0' NOT NULL, - snow_level_mountain int(11) DEFAULT '0' NOT NULL, - snow_level_valley int(11) DEFAULT '0' NOT NULL, - snow_quality varchar(255) DEFAULT '' NOT NULL, - last_snowfall int(11) unsigned DEFAULT '0' NOT NULL, - lifts_total int(11) DEFAULT '0' NOT NULL, - lifts_opened int(11) DEFAULT '0' NOT NULL, - last_update int(11) unsigned DEFAULT '0' NOT NULL, - webcams int(11) unsigned DEFAULT '0', - season_start int(11) unsigned DEFAULT '0' NOT NULL, - season_end int(11) unsigned DEFAULT '0' NOT NULL, + vendor_uid int(11) unsigned DEFAULT '0', + region_name varchar(255) DEFAULT '' NOT NULL, + glacier tinyint(4) unsigned DEFAULT '0' NOT NULL, + alpes tinyint(4) unsigned DEFAULT '0' NOT NULL, + height_max int(11) DEFAULT '0' NOT NULL, + height_min int(11) DEFAULT '0' NOT NULL, + opened tinyint(4) unsigned DEFAULT '0' NOT NULL, + snow_level_mountain int(11) DEFAULT '0' NOT NULL, + snow_level_valley int(11) DEFAULT '0' NOT NULL, + snow_quality varchar(255) DEFAULT '' NOT NULL, + last_snowfall int(11) unsigned DEFAULT '0' NOT NULL, + lifts_total int(11) DEFAULT '0' NOT NULL, + lifts_opened int(11) DEFAULT '0' NOT NULL, + last_update int(11) unsigned DEFAULT '0' NOT NULL, + webcams int(11) unsigned DEFAULT '0', + season_start int(11) unsigned DEFAULT '0' NOT NULL, + season_end int(11) unsigned DEFAULT '0' NOT NULL, - tstamp int(11) unsigned DEFAULT '0' NOT NULL, - crdate int(11) unsigned DEFAULT '0' NOT NULL, - cruser_id int(11) unsigned DEFAULT '0' NOT NULL, - deleted tinyint(4) unsigned DEFAULT '0' NOT NULL, - hidden tinyint(4) unsigned DEFAULT '0' NOT NULL, - starttime int(11) unsigned DEFAULT '0' NOT NULL, - endtime int(11) unsigned DEFAULT '0' NOT NULL, + tstamp int(11) unsigned DEFAULT '0' NOT NULL, + crdate int(11) unsigned DEFAULT '0' NOT NULL, + cruser_id int(11) unsigned DEFAULT '0' NOT NULL, + deleted tinyint(4) unsigned DEFAULT '0' NOT NULL, + hidden tinyint(4) unsigned DEFAULT '0' NOT NULL, + starttime int(11) unsigned DEFAULT '0' NOT NULL, + endtime int(11) unsigned DEFAULT '0' NOT NULL, - t3ver_oid int(11) DEFAULT '0' NOT NULL, - t3ver_id int(11) DEFAULT '0' NOT NULL, - t3ver_wsid int(11) DEFAULT '0' NOT NULL, - t3ver_label varchar(255) DEFAULT '' NOT NULL, - t3ver_state tinyint(4) DEFAULT '0' NOT NULL, - t3ver_stage int(11) DEFAULT '0' NOT NULL, - t3ver_count int(11) DEFAULT '0' NOT NULL, - t3ver_tstamp int(11) DEFAULT '0' NOT NULL, - t3ver_move_id int(11) DEFAULT '0' NOT NULL, + t3ver_oid int(11) DEFAULT '0' NOT NULL, + t3ver_id int(11) DEFAULT '0' NOT NULL, + t3ver_wsid int(11) DEFAULT '0' NOT NULL, + t3ver_label varchar(255) DEFAULT '' NOT NULL, + t3ver_state tinyint(4) DEFAULT '0' NOT NULL, + t3ver_stage int(11) DEFAULT '0' NOT NULL, + t3ver_count int(11) DEFAULT '0' NOT NULL, + t3ver_tstamp int(11) DEFAULT '0' NOT NULL, + t3ver_move_id int(11) DEFAULT '0' NOT NULL, - sys_language_uid int(11) DEFAULT '0' NOT NULL, - l10n_parent int(11) DEFAULT '0' NOT NULL, - l10n_diffsource mediumblob, + sys_language_uid int(11) DEFAULT '0' NOT NULL, + l10n_parent int(11) DEFAULT '0' NOT NULL, + l10n_diffsource mediumblob, - PRIMARY KEY (uid), - KEY parent (pid), - KEY t3ver_oid (t3ver_oid,t3ver_wsid), - KEY language (l10n_parent,sys_language_uid) + PRIMARY KEY (uid), + KEY parent (pid), + KEY t3ver_oid (t3ver_oid, t3ver_wsid), + KEY language (l10n_parent, sys_language_uid) ); # # Table structure for table 'tx_epproducts_domain_model_webcam' # -CREATE TABLE tx_epproducts_domain_model_webcam ( +CREATE TABLE tx_epproducts_domain_model_webcam +( - uid int(11) NOT NULL auto_increment, - pid int(11) DEFAULT '0' NOT NULL, + uid int(11) NOT NULL auto_increment, + pid int(11) DEFAULT '0' NOT NULL, - vendor_uid varchar(32) DEFAULT '' NOT NULL, - available tinyint(4) unsigned DEFAULT '0' NOT NULL, - snowreport int(11) unsigned DEFAULT '0', - name varchar(255) DEFAULT '' NOT NULL, - url varchar(255) DEFAULT '' NOT NULL, + vendor_uid varchar(32) DEFAULT '' NOT NULL, + available tinyint(4) unsigned DEFAULT '0' NOT NULL, + snowreport int(11) unsigned DEFAULT '0', + name varchar(255) DEFAULT '' NOT NULL, + url varchar(255) DEFAULT '' NOT NULL, - tstamp int(11) unsigned DEFAULT '0' NOT NULL, - crdate int(11) unsigned DEFAULT '0' NOT NULL, - cruser_id int(11) unsigned DEFAULT '0' NOT NULL, - deleted tinyint(4) unsigned DEFAULT '0' NOT NULL, - hidden tinyint(4) unsigned DEFAULT '0' NOT NULL, - starttime int(11) unsigned DEFAULT '0' NOT NULL, - endtime int(11) unsigned DEFAULT '0' NOT NULL, + tstamp int(11) unsigned DEFAULT '0' NOT NULL, + crdate int(11) unsigned DEFAULT '0' NOT NULL, + cruser_id int(11) unsigned DEFAULT '0' NOT NULL, + deleted tinyint(4) unsigned DEFAULT '0' NOT NULL, + hidden tinyint(4) unsigned DEFAULT '0' NOT NULL, + starttime int(11) unsigned DEFAULT '0' NOT NULL, + endtime int(11) unsigned DEFAULT '0' NOT NULL, - t3ver_oid int(11) DEFAULT '0' NOT NULL, - t3ver_id int(11) DEFAULT '0' NOT NULL, - t3ver_wsid int(11) DEFAULT '0' NOT NULL, - t3ver_label varchar(255) DEFAULT '' NOT NULL, - t3ver_state tinyint(4) DEFAULT '0' NOT NULL, - t3ver_stage int(11) DEFAULT '0' NOT NULL, - t3ver_count int(11) DEFAULT '0' NOT NULL, - t3ver_tstamp int(11) DEFAULT '0' NOT NULL, - t3ver_move_id int(11) DEFAULT '0' NOT NULL, + t3ver_oid int(11) DEFAULT '0' NOT NULL, + t3ver_id int(11) DEFAULT '0' NOT NULL, + t3ver_wsid int(11) DEFAULT '0' NOT NULL, + t3ver_label varchar(255) DEFAULT '' NOT NULL, + t3ver_state tinyint(4) DEFAULT '0' NOT NULL, + t3ver_stage int(11) DEFAULT '0' NOT NULL, + t3ver_count int(11) DEFAULT '0' NOT NULL, + t3ver_tstamp int(11) DEFAULT '0' NOT NULL, + t3ver_move_id int(11) DEFAULT '0' NOT NULL, - sys_language_uid int(11) DEFAULT '0' NOT NULL, - l10n_parent int(11) DEFAULT '0' NOT NULL, - l10n_diffsource mediumblob, + sys_language_uid int(11) DEFAULT '0' NOT NULL, + l10n_parent int(11) DEFAULT '0' NOT NULL, + l10n_diffsource mediumblob, - PRIMARY KEY (uid), - KEY parent (pid), - KEY t3ver_oid (t3ver_oid,t3ver_wsid), - KEY language (l10n_parent,sys_language_uid) + PRIMARY KEY (uid), + KEY parent (pid), + KEY t3ver_oid (t3ver_oid, t3ver_wsid), + KEY language (l10n_parent, sys_language_uid) ); # # Table structure for table 'tx_epproducts_domain_model_contingent' # -CREATE TABLE tx_epproducts_domain_model_contingent ( +CREATE TABLE tx_epproducts_domain_model_contingent +( - uid int(11) NOT NULL auto_increment, - pid int(11) DEFAULT '0' NOT NULL, + uid int(11) NOT NULL auto_increment, + pid int(11) DEFAULT '0' NOT NULL, - pax int(11) unsigned DEFAULT '0' NOT NULL, - available int(11) unsigned DEFAULT '0' NOT NULL, - date date DEFAULT '0000-00-00', - hotel int(11) unsigned DEFAULT '0', - hotel_code varchar(64) DEFAULT '' NOT NULL, - hotel_bus_pro_id varchar(64) DEFAULT '' NOT NULL, - room_code varchar(64) DEFAULT '' NOT NULL, - room_label varchar(64) DEFAULT '' NOT NULL, - status tinyint(4) unsigned DEFAULT '0' NOT NULL, - min_price int(11) DEFAULT '0' NOT NULL, - min_nights int(11) DEFAULT '0' NOT NULL, - additional_night_min_price int(11) DEFAULT '0' NOT NULL, - additional_night_min_nights int(11) DEFAULT '0' NOT NULL, - groupsch_id varchar(8) DEFAULT '' NOT NULL, + pax int(11) unsigned DEFAULT '0' NOT NULL, + available int(11) unsigned DEFAULT '0' NOT NULL, + date date DEFAULT '0000-00-00', + hotel int(11) unsigned DEFAULT '0', + hotel_code varchar(64) DEFAULT '' NOT NULL, + hotel_bus_pro_id varchar(64) DEFAULT '' NOT NULL, + room_code varchar(64) DEFAULT '' NOT NULL, + room_label varchar(64) DEFAULT '' NOT NULL, + status tinyint(4) unsigned DEFAULT '0' NOT NULL, + min_price int(11) DEFAULT '0' NOT NULL, + min_nights int(11) DEFAULT '0' NOT NULL, + additional_night_min_price int(11) DEFAULT '0' NOT NULL, + additional_night_min_nights int(11) DEFAULT '0' NOT NULL, + groupsch_id varchar(8) DEFAULT '' NOT NULL, - tstamp int(11) unsigned DEFAULT '0' NOT NULL, - crdate int(11) unsigned DEFAULT '0' NOT NULL, - cruser_id int(11) unsigned DEFAULT '0' NOT NULL, - deleted tinyint(4) unsigned DEFAULT '0' NOT NULL, - hidden tinyint(4) unsigned DEFAULT '0' NOT NULL, - starttime int(11) unsigned DEFAULT '0' NOT NULL, - endtime int(11) unsigned DEFAULT '0' NOT NULL, + tstamp int(11) unsigned DEFAULT '0' NOT NULL, + crdate int(11) unsigned DEFAULT '0' NOT NULL, + cruser_id int(11) unsigned DEFAULT '0' NOT NULL, + deleted tinyint(4) unsigned DEFAULT '0' NOT NULL, + hidden tinyint(4) unsigned DEFAULT '0' NOT NULL, + starttime int(11) unsigned DEFAULT '0' NOT NULL, + endtime int(11) unsigned DEFAULT '0' NOT NULL, - t3ver_oid int(11) DEFAULT '0' NOT NULL, - t3ver_id int(11) DEFAULT '0' NOT NULL, - t3ver_wsid int(11) DEFAULT '0' NOT NULL, - t3ver_label varchar(255) DEFAULT '' NOT NULL, - t3ver_state tinyint(4) DEFAULT '0' NOT NULL, - t3ver_stage int(11) DEFAULT '0' NOT NULL, - t3ver_count int(11) DEFAULT '0' NOT NULL, - t3ver_tstamp int(11) DEFAULT '0' NOT NULL, - t3ver_move_id int(11) DEFAULT '0' NOT NULL, + t3ver_oid int(11) DEFAULT '0' NOT NULL, + t3ver_id int(11) DEFAULT '0' NOT NULL, + t3ver_wsid int(11) DEFAULT '0' NOT NULL, + t3ver_label varchar(255) DEFAULT '' NOT NULL, + t3ver_state tinyint(4) DEFAULT '0' NOT NULL, + t3ver_stage int(11) DEFAULT '0' NOT NULL, + t3ver_count int(11) DEFAULT '0' NOT NULL, + t3ver_tstamp int(11) DEFAULT '0' NOT NULL, + t3ver_move_id int(11) DEFAULT '0' NOT NULL, - sys_language_uid int(11) DEFAULT '0' NOT NULL, - l10n_parent int(11) DEFAULT '0' NOT NULL, - l10n_diffsource mediumblob, + sys_language_uid int(11) DEFAULT '0' NOT NULL, + l10n_parent int(11) DEFAULT '0' NOT NULL, + l10n_diffsource mediumblob, - PRIMARY KEY (uid), - KEY parent (pid), - KEY t3ver_oid (t3ver_oid,t3ver_wsid), - KEY language (l10n_parent,sys_language_uid), - KEY groups (date,hotel) + PRIMARY KEY (uid), + KEY parent (pid), + KEY t3ver_oid (t3ver_oid, t3ver_wsid), + KEY language (l10n_parent, sys_language_uid), + KEY groups (date, hotel) ); # # Table structure for table 'tx_epproducts_domain_model_badge' # -CREATE TABLE tx_epproducts_domain_model_badge ( +CREATE TABLE tx_epproducts_domain_model_badge +( - uid int(11) NOT NULL auto_increment, - pid int(11) DEFAULT '0' NOT NULL, + uid int(11) NOT NULL auto_increment, + pid int(11) DEFAULT '0' NOT NULL, - title varchar(255) DEFAULT '' NOT NULL, - subtitle varchar(255) DEFAULT '' NOT NULL, - link int(11) unsigned NOT NULL default '0', - page int(11) unsigned DEFAULT '0', + title varchar(255) DEFAULT '' NOT NULL, + subtitle varchar(255) DEFAULT '' NOT NULL, + link int(11) unsigned NOT NULL default '0', + page int(11) unsigned DEFAULT '0', - tstamp int(11) unsigned DEFAULT '0' NOT NULL, - crdate int(11) unsigned DEFAULT '0' NOT NULL, - cruser_id int(11) unsigned DEFAULT '0' NOT NULL, - deleted tinyint(4) unsigned DEFAULT '0' NOT NULL, - hidden tinyint(4) unsigned DEFAULT '0' NOT NULL, - starttime int(11) unsigned DEFAULT '0' NOT NULL, - endtime int(11) unsigned DEFAULT '0' NOT NULL, + tstamp int(11) unsigned DEFAULT '0' NOT NULL, + crdate int(11) unsigned DEFAULT '0' NOT NULL, + cruser_id int(11) unsigned DEFAULT '0' NOT NULL, + deleted tinyint(4) unsigned DEFAULT '0' NOT NULL, + hidden tinyint(4) unsigned DEFAULT '0' NOT NULL, + starttime int(11) unsigned DEFAULT '0' NOT NULL, + endtime int(11) unsigned DEFAULT '0' NOT NULL, - t3ver_oid int(11) DEFAULT '0' NOT NULL, - t3ver_id int(11) DEFAULT '0' NOT NULL, - t3ver_wsid int(11) DEFAULT '0' NOT NULL, - t3ver_label varchar(255) DEFAULT '' NOT NULL, - t3ver_state tinyint(4) DEFAULT '0' NOT NULL, - t3ver_stage int(11) DEFAULT '0' NOT NULL, - t3ver_count int(11) DEFAULT '0' NOT NULL, - t3ver_tstamp int(11) DEFAULT '0' NOT NULL, - t3ver_move_id int(11) DEFAULT '0' NOT NULL, + t3ver_oid int(11) DEFAULT '0' NOT NULL, + t3ver_id int(11) DEFAULT '0' NOT NULL, + t3ver_wsid int(11) DEFAULT '0' NOT NULL, + t3ver_label varchar(255) DEFAULT '' NOT NULL, + t3ver_state tinyint(4) DEFAULT '0' NOT NULL, + t3ver_stage int(11) DEFAULT '0' NOT NULL, + t3ver_count int(11) DEFAULT '0' NOT NULL, + t3ver_tstamp int(11) DEFAULT '0' NOT NULL, + t3ver_move_id int(11) DEFAULT '0' NOT NULL, - sys_language_uid int(11) DEFAULT '0' NOT NULL, - l10n_parent int(11) DEFAULT '0' NOT NULL, - l10n_diffsource mediumblob, + sys_language_uid int(11) DEFAULT '0' NOT NULL, + l10n_parent int(11) DEFAULT '0' NOT NULL, + l10n_diffsource mediumblob, - PRIMARY KEY (uid), - KEY parent (pid), - KEY t3ver_oid (t3ver_oid,t3ver_wsid), - KEY language (l10n_parent,sys_language_uid) + PRIMARY KEY (uid), + KEY parent (pid), + KEY t3ver_oid (t3ver_oid, t3ver_wsid), + KEY language (l10n_parent, sys_language_uid) ); # # Table structure for table 'tx_epproducts_domain_model_staticsearchparams' # -CREATE TABLE tx_epproducts_domain_model_staticsearchparams ( +CREATE TABLE tx_epproducts_domain_model_staticsearchparams +( - uid int(11) NOT NULL auto_increment, - pid int(11) DEFAULT '0' NOT NULL, + uid int(11) NOT NULL auto_increment, + pid int(11) DEFAULT '0' NOT NULL, - name varchar(255) DEFAULT '' NOT NULL, - path_segment varchar(255) DEFAULT '' NOT NULL, - date_from date DEFAULT '0000-00-00', - date_to date DEFAULT '0000-00-00', - bus tinyint(1) unsigned DEFAULT '0' NOT NULL, - product int(11) unsigned DEFAULT '0', - concept varchar(255) DEFAULT '' NOT NULL, - country int(11) unsigned DEFAULT '0', - region int(11) unsigned DEFAULT '0', - hotel int(11) unsigned DEFAULT '0', - hotel_types varchar(255) DEFAULT '' NOT NULL, - pax int(11) unsigned DEFAULT '0', + name varchar(255) DEFAULT '' NOT NULL, + path_segment varchar(255) DEFAULT '' NOT NULL, + date_from date DEFAULT '0000-00-00', + date_to date DEFAULT '0000-00-00', + bus tinyint(1) unsigned DEFAULT '0' NOT NULL, + product int(11) unsigned DEFAULT '0', + concept varchar(255) DEFAULT '' NOT NULL, + country int(11) unsigned DEFAULT '0', + region int(11) unsigned DEFAULT '0', + hotel int(11) unsigned DEFAULT '0', + hotel_types varchar(255) DEFAULT '' NOT NULL, + pax int(11) unsigned DEFAULT '0', - tstamp int(11) unsigned DEFAULT '0' NOT NULL, - crdate int(11) unsigned DEFAULT '0' NOT NULL, - cruser_id int(11) unsigned DEFAULT '0' NOT NULL, - deleted tinyint(4) unsigned DEFAULT '0' NOT NULL, - hidden tinyint(4) unsigned DEFAULT '0' NOT NULL, - starttime int(11) unsigned DEFAULT '0' NOT NULL, - endtime int(11) unsigned DEFAULT '0' NOT NULL, + tstamp int(11) unsigned DEFAULT '0' NOT NULL, + crdate int(11) unsigned DEFAULT '0' NOT NULL, + cruser_id int(11) unsigned DEFAULT '0' NOT NULL, + deleted tinyint(4) unsigned DEFAULT '0' NOT NULL, + hidden tinyint(4) unsigned DEFAULT '0' NOT NULL, + starttime int(11) unsigned DEFAULT '0' NOT NULL, + endtime int(11) unsigned DEFAULT '0' NOT NULL, - t3ver_oid int(11) DEFAULT '0' NOT NULL, - t3ver_id int(11) DEFAULT '0' NOT NULL, - t3ver_wsid int(11) DEFAULT '0' NOT NULL, - t3ver_label varchar(255) DEFAULT '' NOT NULL, - t3ver_state tinyint(4) DEFAULT '0' NOT NULL, - t3ver_stage int(11) DEFAULT '0' NOT NULL, - t3ver_count int(11) DEFAULT '0' NOT NULL, - t3ver_tstamp int(11) DEFAULT '0' NOT NULL, - t3ver_move_id int(11) DEFAULT '0' NOT NULL, + t3ver_oid int(11) DEFAULT '0' NOT NULL, + t3ver_id int(11) DEFAULT '0' NOT NULL, + t3ver_wsid int(11) DEFAULT '0' NOT NULL, + t3ver_label varchar(255) DEFAULT '' NOT NULL, + t3ver_state tinyint(4) DEFAULT '0' NOT NULL, + t3ver_stage int(11) DEFAULT '0' NOT NULL, + t3ver_count int(11) DEFAULT '0' NOT NULL, + t3ver_tstamp int(11) DEFAULT '0' NOT NULL, + t3ver_move_id int(11) DEFAULT '0' NOT NULL, - sys_language_uid int(11) DEFAULT '0' NOT NULL, - l10n_parent int(11) DEFAULT '0' NOT NULL, - l10n_diffsource mediumblob, + sys_language_uid int(11) DEFAULT '0' NOT NULL, + l10n_parent int(11) DEFAULT '0' NOT NULL, + l10n_diffsource mediumblob, - PRIMARY KEY (uid), - KEY parent (pid), - KEY t3ver_oid (t3ver_oid,t3ver_wsid), - KEY language (l10n_parent,sys_language_uid), - KEY path_segment (path_segment) + PRIMARY KEY (uid), + KEY parent (pid), + KEY t3ver_oid (t3ver_oid, t3ver_wsid), + KEY language (l10n_parent, sys_language_uid), + KEY path_segment (path_segment) ); # # Table structure for table 'tx_epproducts_domain_model_reseller' # -CREATE TABLE tx_epproducts_domain_model_reseller ( +CREATE TABLE tx_epproducts_domain_model_reseller +( - uid int(11) NOT NULL auto_increment, - pid int(11) DEFAULT '0' NOT NULL, + uid int(11) NOT NULL auto_increment, + pid int(11) DEFAULT '0' NOT NULL, - name varchar(255) DEFAULT '' NOT NULL, - code varchar(255) DEFAULT '' NOT NULL, - pa_code varchar(255) DEFAULT '' NOT NULL, - products int(11) unsigned DEFAULT '0' NOT NULL, + name varchar(255) DEFAULT '' NOT NULL, + code varchar(255) DEFAULT '' NOT NULL, + pa_code varchar(255) DEFAULT '' NOT NULL, + products int(11) unsigned DEFAULT '0' NOT NULL, - tstamp int(11) unsigned DEFAULT '0' NOT NULL, - crdate int(11) unsigned DEFAULT '0' NOT NULL, - cruser_id int(11) unsigned DEFAULT '0' NOT NULL, - deleted tinyint(4) unsigned DEFAULT '0' NOT NULL, - hidden tinyint(4) unsigned DEFAULT '0' NOT NULL, - starttime int(11) unsigned DEFAULT '0' NOT NULL, - endtime int(11) unsigned DEFAULT '0' NOT NULL, + tstamp int(11) unsigned DEFAULT '0' NOT NULL, + crdate int(11) unsigned DEFAULT '0' NOT NULL, + cruser_id int(11) unsigned DEFAULT '0' NOT NULL, + deleted tinyint(4) unsigned DEFAULT '0' NOT NULL, + hidden tinyint(4) unsigned DEFAULT '0' NOT NULL, + starttime int(11) unsigned DEFAULT '0' NOT NULL, + endtime int(11) unsigned DEFAULT '0' NOT NULL, - t3ver_oid int(11) DEFAULT '0' NOT NULL, - t3ver_id int(11) DEFAULT '0' NOT NULL, - t3ver_wsid int(11) DEFAULT '0' NOT NULL, - t3ver_label varchar(255) DEFAULT '' NOT NULL, - t3ver_state tinyint(4) DEFAULT '0' NOT NULL, - t3ver_stage int(11) DEFAULT '0' NOT NULL, - t3ver_count int(11) DEFAULT '0' NOT NULL, - t3ver_tstamp int(11) DEFAULT '0' NOT NULL, - t3ver_move_id int(11) DEFAULT '0' NOT NULL, + t3ver_oid int(11) DEFAULT '0' NOT NULL, + t3ver_id int(11) DEFAULT '0' NOT NULL, + t3ver_wsid int(11) DEFAULT '0' NOT NULL, + t3ver_label varchar(255) DEFAULT '' NOT NULL, + t3ver_state tinyint(4) DEFAULT '0' NOT NULL, + t3ver_stage int(11) DEFAULT '0' NOT NULL, + t3ver_count int(11) DEFAULT '0' NOT NULL, + t3ver_tstamp int(11) DEFAULT '0' NOT NULL, + t3ver_move_id int(11) DEFAULT '0' NOT NULL, - sys_language_uid int(11) DEFAULT '0' NOT NULL, - l10n_parent int(11) DEFAULT '0' NOT NULL, - l10n_diffsource mediumblob, + sys_language_uid int(11) DEFAULT '0' NOT NULL, + l10n_parent int(11) DEFAULT '0' NOT NULL, + l10n_diffsource mediumblob, - PRIMARY KEY (uid), - KEY parent (pid), - KEY t3ver_oid (t3ver_oid,t3ver_wsid), - KEY language (l10n_parent,sys_language_uid) + PRIMARY KEY (uid), + KEY parent (pid), + KEY t3ver_oid (t3ver_oid, t3ver_wsid), + KEY language (l10n_parent, sys_language_uid) ); # # Table structure for table 'sys_domain' # -CREATE TABLE sys_domain ( - tx_epproducts_reseller int(11) unsigned DEFAULT '0' +CREATE TABLE sys_domain +( + tx_epproducts_reseller int(11) unsigned DEFAULT '0' ); # # Table structure for table 'tx_epproducts_product_hotel_mm' # -CREATE TABLE tx_epproducts_product_hotel_mm ( - uid_local int(11) unsigned DEFAULT '0' NOT NULL, - uid_foreign int(11) unsigned DEFAULT '0' NOT NULL, - sorting int(11) unsigned DEFAULT '0' NOT NULL, - sorting_foreign int(11) unsigned DEFAULT '0' NOT NULL, +CREATE TABLE tx_epproducts_product_hotel_mm +( + uid_local int(11) unsigned DEFAULT '0' NOT NULL, + uid_foreign int(11) unsigned DEFAULT '0' NOT NULL, + sorting int(11) unsigned DEFAULT '0' NOT NULL, + sorting_foreign int(11) unsigned DEFAULT '0' NOT NULL, - KEY uid_local (uid_local), - KEY uid_foreign (uid_foreign) + KEY uid_local (uid_local), + KEY uid_foreign (uid_foreign) ); # # Table structure for table 'tx_epproducts_product_region_mm' # -CREATE TABLE tx_epproducts_product_region_mm ( - uid_local int(11) unsigned DEFAULT '0' NOT NULL, - uid_foreign int(11) unsigned DEFAULT '0' NOT NULL, - sorting int(11) unsigned DEFAULT '0' NOT NULL, - sorting_foreign int(11) unsigned DEFAULT '0' NOT NULL, +CREATE TABLE tx_epproducts_product_region_mm +( + uid_local int(11) unsigned DEFAULT '0' NOT NULL, + uid_foreign int(11) unsigned DEFAULT '0' NOT NULL, + sorting int(11) unsigned DEFAULT '0' NOT NULL, + sorting_foreign int(11) unsigned DEFAULT '0' NOT NULL, - KEY uid_local (uid_local), - KEY uid_foreign (uid_foreign) + KEY uid_local (uid_local), + KEY uid_foreign (uid_foreign) ); # # Table structure for table 'tx_epproducts_hotel_teammember_mm' # -CREATE TABLE tx_epproducts_hotel_teammember_mm ( - uid_local int(11) unsigned DEFAULT '0' NOT NULL, - uid_foreign int(11) unsigned DEFAULT '0' NOT NULL, - sorting int(11) unsigned DEFAULT '0' NOT NULL, - sorting_foreign int(11) unsigned DEFAULT '0' NOT NULL, +CREATE TABLE tx_epproducts_hotel_teammember_mm +( + uid_local int(11) unsigned DEFAULT '0' NOT NULL, + uid_foreign int(11) unsigned DEFAULT '0' NOT NULL, + sorting int(11) unsigned DEFAULT '0' NOT NULL, + sorting_foreign int(11) unsigned DEFAULT '0' NOT NULL, - KEY uid_local (uid_local), - KEY uid_foreign (uid_foreign) + KEY uid_local (uid_local), + KEY uid_foreign (uid_foreign) ); # # Table structure for table 'tx_epproducts_product_faq_mm' # -CREATE TABLE tx_epproducts_product_faq_mm ( - uid_local int(11) unsigned DEFAULT '0' NOT NULL, - uid_foreign int(11) unsigned DEFAULT '0' NOT NULL, - sorting int(11) unsigned DEFAULT '0' NOT NULL, - sorting_foreign int(11) unsigned DEFAULT '0' NOT NULL, +CREATE TABLE tx_epproducts_product_faq_mm +( + uid_local int(11) unsigned DEFAULT '0' NOT NULL, + uid_foreign int(11) unsigned DEFAULT '0' NOT NULL, + sorting int(11) unsigned DEFAULT '0' NOT NULL, + sorting_foreign int(11) unsigned DEFAULT '0' NOT NULL, - KEY uid_local (uid_local), - KEY uid_foreign (uid_foreign) + KEY uid_local (uid_local), + KEY uid_foreign (uid_foreign) ); # # Table structure for table 'tx_epproducts_product_fact_mm' # -CREATE TABLE tx_epproducts_product_fact_mm ( - uid_local int(11) unsigned DEFAULT '0' NOT NULL, - uid_foreign int(11) unsigned DEFAULT '0' NOT NULL, - sorting int(11) unsigned DEFAULT '0' NOT NULL, - sorting_foreign int(11) unsigned DEFAULT '0' NOT NULL, +CREATE TABLE tx_epproducts_product_fact_mm +( + uid_local int(11) unsigned DEFAULT '0' NOT NULL, + uid_foreign int(11) unsigned DEFAULT '0' NOT NULL, + sorting int(11) unsigned DEFAULT '0' NOT NULL, + sorting_foreign int(11) unsigned DEFAULT '0' NOT NULL, - KEY uid_local (uid_local), - KEY uid_foreign (uid_foreign) + KEY uid_local (uid_local), + KEY uid_foreign (uid_foreign) ); # # Table structure for table 'tx_epproducts_hotel_fact_mm' # -CREATE TABLE tx_epproducts_hotel_fact_mm ( - uid_local int(11) unsigned DEFAULT '0' NOT NULL, - uid_foreign int(11) unsigned DEFAULT '0' NOT NULL, - sorting int(11) unsigned DEFAULT '0' NOT NULL, - sorting_foreign int(11) unsigned DEFAULT '0' NOT NULL, +CREATE TABLE tx_epproducts_hotel_fact_mm +( + uid_local int(11) unsigned DEFAULT '0' NOT NULL, + uid_foreign int(11) unsigned DEFAULT '0' NOT NULL, + sorting int(11) unsigned DEFAULT '0' NOT NULL, + sorting_foreign int(11) unsigned DEFAULT '0' NOT NULL, - KEY uid_local (uid_local), - KEY uid_foreign (uid_foreign) + KEY uid_local (uid_local), + KEY uid_foreign (uid_foreign) ); # # Table structure for table 'tx_epproducts_country_fact_mm' # -CREATE TABLE tx_epproducts_country_fact_mm ( - uid_local int(11) unsigned DEFAULT '0' NOT NULL, - uid_foreign int(11) unsigned DEFAULT '0' NOT NULL, - sorting int(11) unsigned DEFAULT '0' NOT NULL, - sorting_foreign int(11) unsigned DEFAULT '0' NOT NULL, +CREATE TABLE tx_epproducts_country_fact_mm +( + uid_local int(11) unsigned DEFAULT '0' NOT NULL, + uid_foreign int(11) unsigned DEFAULT '0' NOT NULL, + sorting int(11) unsigned DEFAULT '0' NOT NULL, + sorting_foreign int(11) unsigned DEFAULT '0' NOT NULL, - KEY uid_local (uid_local), - KEY uid_foreign (uid_foreign) + KEY uid_local (uid_local), + KEY uid_foreign (uid_foreign) ); # # Table structure for table 'tx_epproducts_region_fact_mm' # -CREATE TABLE tx_epproducts_region_fact_mm ( - uid_local int(11) unsigned DEFAULT '0' NOT NULL, - uid_foreign int(11) unsigned DEFAULT '0' NOT NULL, - sorting int(11) unsigned DEFAULT '0' NOT NULL, - sorting_foreign int(11) unsigned DEFAULT '0' NOT NULL, +CREATE TABLE tx_epproducts_region_fact_mm +( + uid_local int(11) unsigned DEFAULT '0' NOT NULL, + uid_foreign int(11) unsigned DEFAULT '0' NOT NULL, + sorting int(11) unsigned DEFAULT '0' NOT NULL, + sorting_foreign int(11) unsigned DEFAULT '0' NOT NULL, - KEY uid_local (uid_local), - KEY uid_foreign (uid_foreign) + KEY uid_local (uid_local), + KEY uid_foreign (uid_foreign) ); # # Table structure for table 'tx_epproducts_city_fact_mm' # -CREATE TABLE tx_epproducts_city_fact_mm ( - uid_local int(11) unsigned DEFAULT '0' NOT NULL, - uid_foreign int(11) unsigned DEFAULT '0' NOT NULL, - sorting int(11) unsigned DEFAULT '0' NOT NULL, - sorting_foreign int(11) unsigned DEFAULT '0' NOT NULL, +CREATE TABLE tx_epproducts_city_fact_mm +( + uid_local int(11) unsigned DEFAULT '0' NOT NULL, + uid_foreign int(11) unsigned DEFAULT '0' NOT NULL, + sorting int(11) unsigned DEFAULT '0' NOT NULL, + sorting_foreign int(11) unsigned DEFAULT '0' NOT NULL, - KEY uid_local (uid_local), - KEY uid_foreign (uid_foreign) + KEY uid_local (uid_local), + KEY uid_foreign (uid_foreign) ); # # Table structure for table 'tx_epproducts_reseller_product_mm' # -CREATE TABLE tx_epproducts_reseller_product_mm ( - uid_local int(11) unsigned DEFAULT '0' NOT NULL, - uid_foreign int(11) unsigned DEFAULT '0' NOT NULL, - sorting int(11) unsigned DEFAULT '0' NOT NULL, - sorting_foreign int(11) unsigned DEFAULT '0' NOT NULL, +CREATE TABLE tx_epproducts_reseller_product_mm +( + uid_local int(11) unsigned DEFAULT '0' NOT NULL, + uid_foreign int(11) unsigned DEFAULT '0' NOT NULL, + sorting int(11) unsigned DEFAULT '0' NOT NULL, + sorting_foreign int(11) unsigned DEFAULT '0' NOT NULL, - KEY uid_local (uid_local), - KEY uid_foreign (uid_foreign) + KEY uid_local (uid_local), + KEY uid_foreign (uid_foreign) ); # # Table structure for table 'tx_epproducts_log' # -CREATE TABLE tx_epproducts_log ( - request_id varchar(13) DEFAULT '' NOT NULL, - time_micro double(16,4) NOT NULL default '0.0000', - component varchar(255) DEFAULT '' NOT NULL, - level tinyint(1) unsigned DEFAULT '0' NOT NULL, - message text, - data text, +CREATE TABLE tx_epproducts_log +( + request_id varchar(13) DEFAULT '' NOT NULL, + time_micro double(16, 4) NOT NULL default '0.0000', + component varchar(255) DEFAULT '' NOT NULL, + level tinyint(1) unsigned DEFAULT '0' NOT NULL, + message text, + data text, - KEY request (request_id) + KEY request (request_id) ); diff --git a/web/typo3conf/ext/ep_theme/Resources/Private/Templates/AjaxTable/EventPricetable.html b/web/typo3conf/ext/ep_theme/Resources/Private/Templates/AjaxTable/EventPricetable.html index 83d0ab27..81a4b084 100644 --- a/web/typo3conf/ext/ep_theme/Resources/Private/Templates/AjaxTable/EventPricetable.html +++ b/web/typo3conf/ext/ep_theme/Resources/Private/Templates/AjaxTable/EventPricetable.html @@ -22,9 +22,9 @@ - {row.hotelTitle -> v:or(alternative: row.hotelName)} + {row.hotelShortName -> v:or(alternative: row.hotelTitle) -> v:or(alternative: row.hotelName)}