|
|
|
@ -18,13 +18,13 @@ CREATE TABLE tx_thuecat_import_log_entry (
|
|
|
|
|
record_uid int(11) unsigned DEFAULT '0' NOT NULL, |
|
|
|
|
table_name varchar(255) DEFAULT '' NOT NULL, |
|
|
|
|
insertion TINYINT(1) unsigned DEFAULT '0' NOT NULL, |
|
|
|
|
errors text DEFAULT '' NOT NULL, |
|
|
|
|
errors text, |
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
CREATE TABLE tx_thuecat_organisation ( |
|
|
|
|
remote_id varchar(255) DEFAULT '' NOT NULL, |
|
|
|
|
title varchar(255) DEFAULT '' NOT NULL, |
|
|
|
|
description text DEFAULT '' NOT NULL, |
|
|
|
|
description text, |
|
|
|
|
manages_towns int(11) unsigned DEFAULT '0' NOT NULL, |
|
|
|
|
manages_tourist_information int(11) unsigned DEFAULT '0' NOT NULL, |
|
|
|
|
manages_tourist_attraction int(11) unsigned DEFAULT '0' NOT NULL, |
|
|
|
@ -35,7 +35,7 @@ CREATE TABLE tx_thuecat_town (
|
|
|
|
|
managed_by int(11) unsigned DEFAULT '0' NOT NULL, |
|
|
|
|
tourist_information int(11) unsigned DEFAULT '0' NOT NULL, |
|
|
|
|
title varchar(255) DEFAULT '' NOT NULL, |
|
|
|
|
description text DEFAULT '' NOT NULL, |
|
|
|
|
description text, |
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
CREATE TABLE tx_thuecat_tourist_information ( |
|
|
|
@ -43,7 +43,7 @@ CREATE TABLE tx_thuecat_tourist_information (
|
|
|
|
|
managed_by int(11) unsigned DEFAULT '0' NOT NULL, |
|
|
|
|
town int(11) unsigned DEFAULT '0' NOT NULL, |
|
|
|
|
title varchar(255) DEFAULT '' NOT NULL, |
|
|
|
|
description text DEFAULT '' NOT NULL, |
|
|
|
|
description text, |
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
CREATE TABLE tx_thuecat_tourist_attraction ( |
|
|
|
@ -52,27 +52,27 @@ CREATE TABLE tx_thuecat_tourist_attraction (
|
|
|
|
|
town int(11) unsigned DEFAULT '0' NOT NULL, |
|
|
|
|
parking_facility_near_by varchar(255) DEFAULT '' NOT NULL, |
|
|
|
|
title varchar(255) DEFAULT '' NOT NULL, |
|
|
|
|
description text DEFAULT '' NOT NULL, |
|
|
|
|
opening_hours text DEFAULT '' NOT NULL, |
|
|
|
|
address text DEFAULT '' NOT NULL, |
|
|
|
|
media text DEFAULT '' NOT NULL, |
|
|
|
|
offers text DEFAULT '' NOT NULL, |
|
|
|
|
slogan text DEFAULT '' NOT NULL, |
|
|
|
|
start_of_construction text DEFAULT '' NOT NULL, |
|
|
|
|
sanitation text DEFAULT '' NOT NULL, |
|
|
|
|
other_service text DEFAULT '' NOT NULL, |
|
|
|
|
museum_service text DEFAULT '' NOT NULL, |
|
|
|
|
architectural_style text DEFAULT '' NOT NULL, |
|
|
|
|
traffic_infrastructure text DEFAULT '' NOT NULL, |
|
|
|
|
payment_accepted text DEFAULT '' NOT NULL, |
|
|
|
|
digital_offer text DEFAULT '' NOT NULL, |
|
|
|
|
photography text DEFAULT '' NOT NULL, |
|
|
|
|
pets_allowed text DEFAULT '' NOT NULL, |
|
|
|
|
is_accessible_for_free text DEFAULT '' NOT NULL, |
|
|
|
|
public_access text DEFAULT '' NOT NULL, |
|
|
|
|
available_languages text DEFAULT '' NOT NULL, |
|
|
|
|
distance_to_public_transport text DEFAULT '' NOT NULL, |
|
|
|
|
accessibility_specification text DEFAULT '' NOT NULL, |
|
|
|
|
description text, |
|
|
|
|
opening_hours text, |
|
|
|
|
address text, |
|
|
|
|
media text, |
|
|
|
|
offers text, |
|
|
|
|
slogan text, |
|
|
|
|
start_of_construction text, |
|
|
|
|
sanitation text, |
|
|
|
|
other_service text, |
|
|
|
|
museum_service text, |
|
|
|
|
architectural_style text, |
|
|
|
|
traffic_infrastructure text, |
|
|
|
|
payment_accepted text, |
|
|
|
|
digital_offer text, |
|
|
|
|
photography text, |
|
|
|
|
pets_allowed text, |
|
|
|
|
is_accessible_for_free text, |
|
|
|
|
public_access text, |
|
|
|
|
available_languages text, |
|
|
|
|
distance_to_public_transport text, |
|
|
|
|
accessibility_specification text, |
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
CREATE TABLE tx_thuecat_parking_facility ( |
|
|
|
@ -80,14 +80,14 @@ CREATE TABLE tx_thuecat_parking_facility (
|
|
|
|
|
managed_by int(11) unsigned DEFAULT '0' NOT NULL, |
|
|
|
|
town int(11) unsigned DEFAULT '0' NOT NULL, |
|
|
|
|
title varchar(255) DEFAULT '' NOT NULL, |
|
|
|
|
description text DEFAULT '' NOT NULL, |
|
|
|
|
opening_hours text DEFAULT '' NOT NULL, |
|
|
|
|
address text DEFAULT '' NOT NULL, |
|
|
|
|
media text DEFAULT '' NOT NULL, |
|
|
|
|
offers text DEFAULT '' NOT NULL, |
|
|
|
|
sanitation text DEFAULT '' NOT NULL, |
|
|
|
|
other_service text DEFAULT '' NOT NULL, |
|
|
|
|
traffic_infrastructure text DEFAULT '' NOT NULL, |
|
|
|
|
payment_accepted text DEFAULT '' NOT NULL, |
|
|
|
|
distance_to_public_transport text DEFAULT '' NOT NULL, |
|
|
|
|
description text, |
|
|
|
|
opening_hours text, |
|
|
|
|
address text, |
|
|
|
|
media text, |
|
|
|
|
offers text, |
|
|
|
|
sanitation text, |
|
|
|
|
other_service text, |
|
|
|
|
traffic_infrastructure text, |
|
|
|
|
payment_accepted text, |
|
|
|
|
distance_to_public_transport text, |
|
|
|
|
); |
|
|
|
|