All checks were successful
Test Asgard Runner / test (push) Successful in 2s
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
13 lines
552 B
SQL
13 lines
552 B
SQL
-- Teleport configuration profiles for NTeleportation integration
|
|
CREATE TABLE teleport_configs (
|
|
id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
|
|
license_id UUID NOT NULL REFERENCES licenses(id) ON DELETE CASCADE,
|
|
config_name VARCHAR(100) NOT NULL,
|
|
description TEXT,
|
|
config_data JSONB NOT NULL DEFAULT '{}',
|
|
is_active BOOLEAN NOT NULL DEFAULT false,
|
|
created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
|
|
updated_at TIMESTAMPTZ NOT NULL DEFAULT NOW()
|
|
);
|
|
CREATE INDEX idx_teleport_configs_license ON teleport_configs(license_id);
|