| Server IP : 202.61.199.114 / Your IP : 216.73.217.139 Web Server : nginx/1.22.1 System : Linux de.arni-solutions.de 6.1.0-49-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64 User : web20 ( 1018) PHP Version : 8.4.23 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/seaside2.pacim.de/web/database/migrations/ |
Upload File : |
-- 022: Quell-IDs aus dem Import-Dump persistent mitführen, damit -- --data-refresh Datensätze anhand der originalen IDs wiederfinden kann. ALTER TABLE customers ADD COLUMN legacy_source_id INT UNSIGNED NULL AFTER source; ALTER TABLE customers ADD INDEX idx_customers_legacy_source (legacy_source_id); ALTER TABLE events ADD COLUMN legacy_source_id INT UNSIGNED NULL AFTER status; ALTER TABLE events ADD INDEX idx_events_legacy_source (legacy_source_id); ALTER TABLE bookings ADD COLUMN legacy_source_id INT UNSIGNED NULL AFTER legacy_booking_no; ALTER TABLE bookings ADD INDEX idx_bookings_legacy_source (legacy_source_id); ALTER TABLE invoices ADD COLUMN legacy_source_id INT UNSIGNED NULL AFTER status; ALTER TABLE invoices ADD INDEX idx_invoices_legacy_source (legacy_source_id);