collab: Store features provided by extensions in the database (#24303)

This PR adds new columns to the `extension_versions` table to record
which features an extension provides.

These `provides_*` columns are populated from the `provides` field on
the extension manifest.

We'll be able to leverage this data in the future for showing what an
extension provides in the extensions UI, as well as allowing to filter
by extensions that provide a certain feature.

Release Notes:

- N/A
This commit is contained in:
Marshall Bowers 2025-02-05 14:50:24 -05:00 committed by GitHub
parent 2f5abe2b5a
commit 59738f88c2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 140 additions and 4 deletions

View file

@ -0,0 +1,10 @@
alter table extension_versions
add column provides_themes bool not null default false,
add column provides_icon_themes bool not null default false,
add column provides_languages bool not null default false,
add column provides_grammars bool not null default false,
add column provides_language_servers bool not null default false,
add column provides_context_servers bool not null default false,
add column provides_slash_commands bool not null default false,
add column provides_indexed_docs_providers bool not null default false,
add column provides_snippets bool not null default false;