mirror of
https://github.com/werkraum-media/events.git
synced 2024-11-21 21:16:11 +01:00
TYPO3 Extension providing events with import of destination data one
https://docs.typo3.org/p/werkraummedia/events/main/en-us/
Daniel Siepmann
c6ad36b294
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. |
||
---|---|---|
Classes | ||
Configuration | ||
Documentation | ||
Resources | ||
Tests | ||
.gitattributes | ||
.gitignore | ||
.gitlab-ci.yml | ||
composer.json | ||
ecs.php | ||
ext_emconf.php | ||
ext_localconf.php | ||
ext_tables.php | ||
ext_tables.sql | ||
phpstan-baseline.neon | ||
phpstan.neon | ||
phpunit.xml.dist | ||
README.md |
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';