-- Seed sshTab into app_tabs, ftt_app_tabs, app_feature_policy, ftt_app_feature_policy.
-- sort_order 25 is above existing max (agentTab=20, documentsTab=21, etc.)
INSERT IGNORE INTO app_tabs (tab_id, label, icon, sort_order, content_type, content_slug, requires_token, created_at, updated_at) VALUES
('sshTab', 'SSH', 'terminal', 25, 'native', NULL, 0, NOW(), NOW());
INSERT IGNORE INTO ftt_app_tabs (tab_id, label, icon, sort_order, content_type, content_slug, requires_token, created_at, updated_at) VALUES
('sshTab', 'SSH', 'terminal', 25, 'native', NULL, 0, NOW(), NOW());
INSERT IGNORE INTO app_feature_policy (tab_id, visibility, message_type, message_content, min_tier, allow_override_for_developer_admin, updated_at) VALUES
('sshTab', 'show', 'none', NULL, 'trial', 1, NOW());
INSERT IGNORE INTO ftt_app_feature_policy (tab_id, visibility, message_type, message_content, min_tier, allow_override_for_developer_admin, updated_at) VALUES
('sshTab', 'show', 'none', NULL, 'trial', 1, NOW());
