- 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.
7 lines
316 B
SQL
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;
|