@@ -86,25 +86,6 @@ create table "public"."airbyte_configs_migrations"(
86
86
constraint "airbyte_configs_migrations_pk"
87
87
primary key ("installed_rank")
88
88
);
89
- create table "public"."airbyte_metadata"(
90
- "key" varchar(255) not null,
91
- "value" varchar(255) null,
92
- constraint "airbyte_metadata_pkey"
93
- primary key ("key")
94
- );
95
- create table "public"."attempts"(
96
- "id" int8 generated by default as identity not null,
97
- "job_id" int8 null,
98
- "attempt_number" int4 null,
99
- "log_path" varchar(255) null,
100
- "output" jsonb null,
101
- "status" any null,
102
- "created_at" timestamptz(35) null,
103
- "updated_at" timestamptz(35) null,
104
- "ended_at" timestamptz(35) null,
105
- constraint "attempts_pkey"
106
- primary key ("id")
107
- );
108
89
create table "public"."connection"(
109
90
"id" uuid not null,
110
91
"namespace_definition" namespace_definition_type not null,
@@ -143,18 +124,6 @@ create table "public"."connection_operation"(
143
124
"operation_id"
144
125
)
145
126
);
146
- create table "public"."jobs"(
147
- "id" int8 generated by default as identity not null,
148
- "config_type" any null,
149
- "scope" varchar(255) null,
150
- "config" jsonb null,
151
- "status" any null,
152
- "started_at" timestamptz(35) null,
153
- "created_at" timestamptz(35) null,
154
- "updated_at" timestamptz(35) null,
155
- constraint "jobs_pkey"
156
- primary key ("id")
157
- );
158
127
create table "public"."operation"(
159
128
"id" uuid not null,
160
129
"workspace_id" uuid not null,
@@ -304,12 +273,6 @@ create index "actor_oauth_parameter_workspace_definition_idx" on "public"."actor
304
273
);
305
274
create unique index "airbyte_configs_migrations_pk" on "public"."airbyte_configs_migrations"("installed_rank" asc);
306
275
create index "airbyte_configs_migrations_s_idx" on "public"."airbyte_configs_migrations"("success" asc);
307
- create unique index "airbyte_metadata_pkey" on "public"."airbyte_metadata"("key" asc);
308
- create unique index "attempts_pkey" on "public"."attempts"("id" asc);
309
- create unique index "job_attempt_idx" on "public"."attempts"(
310
- "job_id" asc,
311
- "attempt_number" asc
312
- );
313
276
create index "connection_destination_id_idx" on "public"."connection"("destination_id" asc);
314
277
create unique index "connection_pkey" on "public"."connection"("id" asc);
315
278
create index "connection_source_id_idx" on "public"."connection"("source_id" asc);
@@ -319,7 +282,6 @@ create unique index "connection_operation_pkey" on "public"."connection_operatio
319
282
"connection_id" asc,
320
283
"operation_id" asc
321
284
);
322
- create unique index "jobs_pkey" on "public"."jobs"("id" asc);
323
285
create unique index "operation_pkey" on "public"."operation"("id" asc);
324
286
create unique index "state__connection_id__stream_name__namespace__uq" on "public"."state"(
325
287
"connection_id" asc,
0 commit comments