9 lines
277 B
MySQL
9 lines
277 B
MySQL
|
|
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';
|