Skip to content

Commit

Permalink
Adding recommended to script (#1756)
Browse files Browse the repository at this point in the history
  • Loading branch information
travjenkins authored Nov 4, 2024
1 parent b270458 commit d390285
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions scripts/install-connector-local.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,13 @@ echo "Adding connector image_name: '${CONNECTOR}', image_tag: '${TAG}'" 1>&2
psql 'postgres://postgres:postgres@localhost:5432/postgres' <<EOF
begin;
insert into connectors (image_name, title, short_description, logo_url, external_url) values (
insert into connectors (image_name, title, short_description, logo_url, external_url, recommended) values (
'${CONNECTOR}',
json_build_object('en-US','${CONNECTOR}'),
json_build_object('en-US','${CONNECTOR}'),
json_build_object('en-US',''),
'https://estuary.dev/'
'https://estuary.dev/',
false
) on conflict do nothing;
insert into connector_tags (connector_id, image_tag)
Expand Down

0 comments on commit d390285

Please sign in to comment.