create table recommendations ( id text not null, project , type text references recommendation_types not null, object , name text not null, from text not null, to text not null, created_at timestamptz not null ); comment on table recommendations is ' Summary of a specific recommendations for a project. Designed for display in the project dashboard '; comment on column recommendations.name is ' The name of the library or binary to upgrade '; comment on column recommendations.from is ' The current version '; comment on column recommendations.to is ' The version to which we recommend upgrading ';