bmc_hub/migrations/1025_internet_connections_sla_subscription.sql
Christian adc4fb5876 Implement tests for sag module, add knowledge base templates, and enhance internet connection migrations
- Added multiple test cases for the sag module to ensure proper functionality and data handling.
- Created new templates for knowledge detail and knowledge index pages to display articles and solutions.
- Introduced migrations to enhance the internet connections schema, including new columns for manual sharing and SLA subscriptions.
- Added a script to reconcile known internet connections with verified data.
- Planned the implementation of a new website content administration module for managing customer references and operational status.
2026-08-30 14:34:43 +02:00

7 lines
316 B
SQL

ALTER TABLE internet_connections_connections
ADD COLUMN IF NOT EXISTS sla_subscription_id INTEGER REFERENCES sag_subscriptions(id) ON DELETE SET NULL;
CREATE INDEX IF NOT EXISTS idx_internet_connections_sla_subscription
ON internet_connections_connections(sla_subscription_id)
WHERE deleted_at IS NULL;