TYPO3 Extension providing events with import of destination data one https://docs.typo3.org/p/werkraummedia/events/main/en-us/
Find a file
Daniel Siepmann c6ad36b294 Use proper column names
Normal updates are executed:

    ./vendor/bin/typo3cms upgrade:prepare

    ./vendor/bin/typo3cms upgrade:run all --no-interaction

    ./vendor/bin/typo3cms database:updateschema '*'

    ./vendor/bin/typo3cms database:updateschema '*'

The first one will execute an database:updateschema which will run safe
which only adds and doesn't rename or remove columns.
Then our update wizard can use the existing columns and new columns and
tables.
The last step will actually rename and remove.
2023-01-24 13:08:46 +01:00
Classes Use proper column names 2023-01-24 13:08:46 +01:00
Configuration Mark update wizard as public to allow DI 2023-01-24 13:08:46 +01:00
Documentation Move addStaticFile() method call to proper place 2023-01-24 13:08:44 +01:00
Resources Replace Icons and add icon for page containing records 2023-01-05 09:21:25 +00:00
Tests Provide configurable repeatUntil fallback 2023-01-05 09:01:13 +00:00
.gitattributes Expose branches, beside tags, to composer 2022-11-22 08:41:17 +00:00
.gitignore Add TYPO3 v11 configurations 2021-12-13 08:48:34 +01:00
.gitlab-ci.yml Expose branches, beside tags, to composer 2022-11-22 08:41:17 +00:00
composer.json Add first functional tests covering location filter 2022-08-09 09:56:18 +02:00
ecs.php Add CI 2021-09-07 09:26:59 +02:00
ext_emconf.php Provide configurable repeatUntil fallback 2023-01-05 09:01:13 +00:00
ext_localconf.php Provide location update wizard 2023-01-09 11:49:51 +00:00
ext_tables.php Move addStaticFile() method call to proper place 2023-01-24 13:08:44 +01:00
ext_tables.sql Add default routing 2022-11-23 09:59:55 +00:00
phpstan-baseline.neon Provide location update wizard 2023-01-09 11:49:51 +00:00
phpstan.neon Add default routing 2022-11-23 09:59:55 +00:00
phpunit.xml.dist Add first functional tests covering location filter 2022-08-09 09:56:18 +02:00
README.md Migrate readme to Documentation 2021-12-13 08:48:10 +01:00

Clean category relations
TRUNCATE TABLE tx_events_domain_model_event;
TRUNCATE TABLE tx_events_domain_model_date;
TRUNCATE TABLE tx_events_domain_model_organizer;
DELETE FROM sys_category_record_mm WHERE tablenames = 'tx_events_domain_model_event';
DELETE FROM sys_file_reference WHERE tablenames = 'tx_events_domain_model_event';
DELETE FROM sys_file WHERE identifier LIKE '%/events/%';
DELETE FROM sys_file_metadata WHERE alternative = 'DD Import';