2021-02-18 08:49:27 +01:00
|
|
|
CREATE TABLE pages (
|
|
|
|
tx_thuecat_flexform text,
|
|
|
|
);
|
|
|
|
|
2021-02-01 14:14:05 +01:00
|
|
|
CREATE TABLE tx_thuecat_import_configuration (
|
|
|
|
title varchar(255) DEFAULT '' NOT NULL,
|
|
|
|
type varchar(255) DEFAULT '' NOT NULL,
|
|
|
|
configuration text,
|
2022-09-29 15:17:06 +02:00
|
|
|
logs int(11) unsigned DEFAULT '0' NOT NULL,
|
2021-02-01 14:14:05 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
CREATE TABLE tx_thuecat_import_log (
|
|
|
|
configuration int(11) unsigned DEFAULT '0' NOT NULL,
|
|
|
|
log_entries int(11) unsigned DEFAULT '0' NOT NULL,
|
|
|
|
);
|
|
|
|
|
|
|
|
CREATE TABLE tx_thuecat_import_log_entry (
|
2022-12-15 12:41:35 +01:00
|
|
|
type varchar(255) DEFAULT 'savingEntity' NOT NULL,
|
2021-02-01 14:14:05 +01:00
|
|
|
import_log int(11) unsigned DEFAULT '0' NOT NULL,
|
2022-12-15 12:41:35 +01:00
|
|
|
errors text,
|
|
|
|
remote_id varchar(255) DEFAULT '' NOT NULL,
|
2021-02-01 14:14:05 +01:00
|
|
|
record_uid int(11) unsigned DEFAULT '0' NOT NULL,
|
|
|
|
table_name varchar(255) DEFAULT '' NOT NULL,
|
|
|
|
insertion TINYINT(1) unsigned DEFAULT '0' NOT NULL,
|
|
|
|
);
|
|
|
|
|
|
|
|
CREATE TABLE tx_thuecat_organisation (
|
|
|
|
remote_id varchar(255) DEFAULT '' NOT NULL,
|
|
|
|
title varchar(255) DEFAULT '' NOT NULL,
|
2021-09-08 12:12:25 +02:00
|
|
|
description text,
|
2021-02-01 14:14:05 +01:00
|
|
|
manages_towns int(11) unsigned DEFAULT '0' NOT NULL,
|
|
|
|
manages_tourist_information int(11) unsigned DEFAULT '0' NOT NULL,
|
2021-02-16 17:12:47 +01:00
|
|
|
manages_tourist_attraction int(11) unsigned DEFAULT '0' NOT NULL,
|
2021-02-01 14:14:05 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
CREATE TABLE tx_thuecat_town (
|
|
|
|
remote_id varchar(255) DEFAULT '' NOT NULL,
|
|
|
|
managed_by int(11) unsigned DEFAULT '0' NOT NULL,
|
|
|
|
tourist_information int(11) unsigned DEFAULT '0' NOT NULL,
|
|
|
|
title varchar(255) DEFAULT '' NOT NULL,
|
2021-09-08 12:12:25 +02:00
|
|
|
description text,
|
2021-02-01 14:14:05 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
CREATE TABLE tx_thuecat_tourist_information (
|
|
|
|
remote_id varchar(255) DEFAULT '' NOT NULL,
|
|
|
|
managed_by int(11) unsigned DEFAULT '0' NOT NULL,
|
|
|
|
town int(11) unsigned DEFAULT '0' NOT NULL,
|
|
|
|
title varchar(255) DEFAULT '' NOT NULL,
|
2021-09-08 12:12:25 +02:00
|
|
|
description text,
|
2021-02-01 14:14:05 +01:00
|
|
|
);
|
2021-02-03 17:20:01 +01:00
|
|
|
|
|
|
|
CREATE TABLE tx_thuecat_tourist_attraction (
|
|
|
|
remote_id varchar(255) DEFAULT '' NOT NULL,
|
|
|
|
managed_by int(11) unsigned DEFAULT '0' NOT NULL,
|
|
|
|
town int(11) unsigned DEFAULT '0' NOT NULL,
|
2021-08-18 13:54:18 +02:00
|
|
|
parking_facility_near_by varchar(255) DEFAULT '' NOT NULL,
|
2021-02-03 17:20:01 +01:00
|
|
|
title varchar(255) DEFAULT '' NOT NULL,
|
2021-09-08 12:12:25 +02:00
|
|
|
description text,
|
|
|
|
opening_hours text,
|
2022-11-28 11:06:54 +01:00
|
|
|
special_opening_hours text,
|
2021-09-08 12:12:25 +02:00
|
|
|
address text,
|
2022-11-29 11:50:22 +01:00
|
|
|
url text,
|
2021-09-08 12:12:25 +02:00
|
|
|
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,
|
2023-08-29 13:54:16 +02:00
|
|
|
editorial_images int(11) unsigned DEFAULT '0' NOT NULL,
|
2021-02-03 17:20:01 +01:00
|
|
|
);
|
2021-08-18 13:54:18 +02:00
|
|
|
|
|
|
|
CREATE TABLE tx_thuecat_parking_facility (
|
|
|
|
remote_id varchar(255) DEFAULT '' NOT NULL,
|
|
|
|
managed_by int(11) unsigned DEFAULT '0' NOT NULL,
|
|
|
|
town int(11) unsigned DEFAULT '0' NOT NULL,
|
|
|
|
title varchar(255) DEFAULT '' NOT NULL,
|
2021-09-08 12:12:25 +02:00
|
|
|
description text,
|
|
|
|
opening_hours text,
|
2022-11-28 11:06:54 +01:00
|
|
|
special_opening_hours text,
|
2021-09-08 12:12:25 +02:00
|
|
|
address text,
|
|
|
|
media text,
|
|
|
|
offers text,
|
|
|
|
sanitation text,
|
|
|
|
other_service text,
|
|
|
|
traffic_infrastructure text,
|
|
|
|
payment_accepted text,
|
|
|
|
distance_to_public_transport text,
|
2021-08-18 13:54:18 +02:00
|
|
|
);
|