Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add two new columns to connectors for UI to show/hide properties #1556

Merged
merged 10 commits into from
Aug 27, 2024
1 change: 0 additions & 1 deletion supabase/migrations/06_connectors.sql
Original file line number Diff line number Diff line change
Expand Up @@ -102,4 +102,3 @@ grant select on table connector_tags to authenticated;

create unique index idx_connector_tags_id_where_queued on connector_tags(id)
where job_status->>'type' = 'queued';

11 changes: 11 additions & 0 deletions supabase/migrations/58_connector_tags_control_flags.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
begin;

alter table connector_tags add column default_capture_interval interval;
comment on column connector_tags.default_capture_interval is
'The default value for the interval property for a Capture. This is normally used for non-streaming connectors';

alter table connector_tags add column disable_backfill boolean not null default false;
comment on column connector_tags.disable_backfill is
'Controls if the UI will hide the backfill button for a connector';

commit;
Loading