bmc_hub/migrations/207_fix_nka020900_ip_range_mapping.sql
Christian 3311b8e590 Add comprehensive tests for internet connections module, invoice parsing, and subscription provisioning
- Implement tests for the internet connections module, covering routes, IP range creation, and connection validation.
- Add tests for the Invoice2DataService to validate extraction from GlobalConnect invoices.
- Create tests for subscription network provisioning, ensuring proper handling of network items and IP allocations.
- Include validation checks for subtotal mismatches and ensure error handling for missing IP selections.
2026-07-09 23:44:30 +02:00

9 lines
277 B
SQL

UPDATE internet_connections_ip_ranges
SET service_address = 'Rydagervej 27, 2620 Albertslund',
customer_id = NULL,
monthly_cost = 64.00,
updated_at = CURRENT_TIMESTAMP
WHERE deleted_at IS NULL
AND provider_reference = 'NKA-020900'
AND cidr = '87.116.1.200/29';