@@ -153,8 +153,8 @@ CREATE TABLE IF NOT EXISTS "public"."github_doc_file_paths" (
153
153
" path" " text" NOT NULL ,
154
154
" is_review_enabled" boolean DEFAULT true NOT NULL ,
155
155
" project_id" uuid NOT NULL ,
156
- " created_at" timestamp (3 ) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL ,
157
- " updated_at" timestamp (3 ) without time zone NOT NULL
156
+ " created_at" timestamp (3 ) with time zone DEFAULT CURRENT_TIMESTAMP NOT NULL ,
157
+ " updated_at" timestamp (3 ) with time zone NOT NULL
158
158
);
159
159
160
160
@@ -172,8 +172,8 @@ CREATE TABLE IF NOT EXISTS "public"."github_schema_file_paths" (
172
172
" id" uuid NOT NULL DEFAULT gen_random_uuid(),
173
173
" path" " text" NOT NULL ,
174
174
" project_id" uuid NOT NULL ,
175
- " created_at" timestamp (3 ) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL ,
176
- " updated_at" timestamp (3 ) without time zone NOT NULL ,
175
+ " created_at" timestamp (3 ) with time zone DEFAULT CURRENT_TIMESTAMP NOT NULL ,
176
+ " updated_at" timestamp (3 ) with time zone NOT NULL ,
177
177
" format" " public" ." schema_format_enum" NOT NULL
178
178
);
179
179
@@ -196,9 +196,9 @@ CREATE TABLE IF NOT EXISTS "public"."knowledge_suggestions" (
196
196
" content" " text" NOT NULL ,
197
197
" file_sha" " text" ,
198
198
" project_id" uuid NOT NULL ,
199
- " approved_at" timestamp (3 ) without time zone ,
200
- " created_at" timestamp (3 ) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL ,
201
- " updated_at" timestamp (3 ) without time zone NOT NULL ,
199
+ " approved_at" timestamp (3 ) with time zone ,
200
+ " created_at" timestamp (3 ) with time zone DEFAULT CURRENT_TIMESTAMP NOT NULL ,
201
+ " updated_at" timestamp (3 ) with time zone NOT NULL ,
202
202
" branch_name" " text" NOT NULL ,
203
203
" trace_id" " text" ,
204
204
" reasoning" " text" DEFAULT ' ' ::" text"
@@ -212,8 +212,8 @@ CREATE TABLE IF NOT EXISTS "public"."knowledge_suggestion_doc_mappings" (
212
212
" id" uuid NOT NULL DEFAULT gen_random_uuid(),
213
213
" knowledge_suggestion_id" uuid NOT NULL ,
214
214
" github_doc_file_path_id" uuid NOT NULL ,
215
- " created_at" timestamp (3 ) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL ,
216
- " updated_at" timestamp (3 ) without time zone NOT NULL
215
+ " created_at" timestamp (3 ) with time zone DEFAULT CURRENT_TIMESTAMP NOT NULL ,
216
+ " updated_at" timestamp (3 ) with time zone NOT NULL
217
217
);
218
218
219
219
@@ -250,8 +250,8 @@ CREATE TABLE IF NOT EXISTS "public"."migrations" (
250
250
" id" uuid NOT NULL DEFAULT gen_random_uuid(),
251
251
" title" " text" NOT NULL ,
252
252
" pull_request_id" uuid NOT NULL ,
253
- " created_at" timestamp (3 ) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL ,
254
- " updated_at" timestamp (3 ) without time zone NOT NULL
253
+ " created_at" timestamp (3 ) with time zone DEFAULT CURRENT_TIMESTAMP NOT NULL ,
254
+ " updated_at" timestamp (3 ) with time zone NOT NULL
255
255
);
256
256
257
257
@@ -292,9 +292,9 @@ CREATE TABLE IF NOT EXISTS "public"."overall_reviews" (
292
292
" project_id" uuid,
293
293
" pull_request_id" uuid NOT NULL ,
294
294
" review_comment" " text" ,
295
- " reviewed_at" timestamp (3 ) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL ,
296
- " created_at" timestamp (3 ) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL ,
297
- " updated_at" timestamp (3 ) without time zone NOT NULL ,
295
+ " reviewed_at" timestamp (3 ) with time zone DEFAULT CURRENT_TIMESTAMP NOT NULL ,
296
+ " created_at" timestamp (3 ) with time zone DEFAULT CURRENT_TIMESTAMP NOT NULL ,
297
+ " updated_at" timestamp (3 ) with time zone NOT NULL ,
298
298
" branch_name" " text" NOT NULL ,
299
299
" trace_id" " text"
300
300
);
@@ -307,8 +307,8 @@ CREATE TABLE IF NOT EXISTS "public"."overall_review_knowledge_suggestion_mapping
307
307
" id" uuid NOT NULL DEFAULT gen_random_uuid(),
308
308
" overall_review_id" uuid NOT NULL ,
309
309
" knowledge_suggestion_id" uuid NOT NULL ,
310
- " created_at" timestamp (3 ) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL ,
311
- " updated_at" timestamp (3 ) without time zone NOT NULL
310
+ " created_at" timestamp (3 ) with time zone DEFAULT CURRENT_TIMESTAMP NOT NULL ,
311
+ " updated_at" timestamp (3 ) with time zone NOT NULL
312
312
);
313
313
314
314
@@ -332,8 +332,8 @@ ALTER TABLE "public"."overall_review_knowledge_suggestion_mappings" OWNER TO "po
332
332
CREATE TABLE IF NOT EXISTS " public" ." projects" (
333
333
" id" uuid NOT NULL DEFAULT gen_random_uuid(),
334
334
" name" " text" NOT NULL ,
335
- " created_at" timestamp (3 ) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL ,
336
- " updated_at" timestamp (3 ) without time zone NOT NULL ,
335
+ " created_at" timestamp (3 ) with time zone DEFAULT CURRENT_TIMESTAMP NOT NULL ,
336
+ " updated_at" timestamp (3 ) with time zone NOT NULL ,
337
337
" organization_id" uuid );
338
338
339
339
@@ -344,8 +344,8 @@ CREATE TABLE IF NOT EXISTS "public"."project_repository_mappings" (
344
344
" id" uuid NOT NULL DEFAULT gen_random_uuid(),
345
345
" project_id" uuid NOT NULL ,
346
346
" repository_id" uuid NOT NULL ,
347
- " created_at" timestamp (3 ) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL ,
348
- " updated_at" timestamp (3 ) without time zone NOT NULL
347
+ " created_at" timestamp (3 ) with time zone DEFAULT CURRENT_TIMESTAMP NOT NULL ,
348
+ " updated_at" timestamp (3 ) with time zone NOT NULL
349
349
);
350
350
351
351
@@ -370,8 +370,8 @@ CREATE TABLE IF NOT EXISTS "public"."pull_requests" (
370
370
" id" uuid NOT NULL DEFAULT gen_random_uuid(),
371
371
" pull_number" bigint NOT NULL ,
372
372
" comment_id" bigint ,
373
- " created_at" timestamp (3 ) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL ,
374
- " updated_at" timestamp (3 ) without time zone NOT NULL ,
373
+ " created_at" timestamp (3 ) with time zone DEFAULT CURRENT_TIMESTAMP NOT NULL ,
374
+ " updated_at" timestamp (3 ) with time zone NOT NULL ,
375
375
" repository_id" uuid NOT NULL
376
376
);
377
377
@@ -392,8 +392,8 @@ CREATE TABLE IF NOT EXISTS "public"."repositories" (
392
392
" owner" " text" NOT NULL ,
393
393
" installation_id" integer NOT NULL ,
394
394
" is_active" boolean DEFAULT true NOT NULL ,
395
- " created_at" timestamp (3 ) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL ,
396
- " updated_at" timestamp (3 ) without time zone NOT NULL
395
+ " created_at" timestamp (3 ) with time zone DEFAULT CURRENT_TIMESTAMP NOT NULL ,
396
+ " updated_at" timestamp (3 ) with time zone NOT NULL
397
397
);
398
398
399
399
@@ -413,10 +413,10 @@ CREATE TABLE IF NOT EXISTS "public"."review_feedbacks" (
413
413
" category" " public" ." category_enum" NOT NULL ,
414
414
" severity" " public" ." severity_enum" NOT NULL ,
415
415
" description" " text" NOT NULL ,
416
- " created_at" timestamp (3 ) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL ,
417
- " updated_at" timestamp (3 ) without time zone NOT NULL ,
416
+ " created_at" timestamp (3 ) with time zone DEFAULT CURRENT_TIMESTAMP NOT NULL ,
417
+ " updated_at" timestamp (3 ) with time zone NOT NULL ,
418
418
" suggestion" " text" NOT NULL ,
419
- " resolved_at" timestamp (3 ) without time zone ,
419
+ " resolved_at" timestamp (3 ) with time zone ,
420
420
" resolution_comment" " text"
421
421
);
422
422
@@ -433,8 +433,8 @@ CREATE TABLE IF NOT EXISTS "public"."review_feedback_comments" (
433
433
" review_feedback_id" uuid NOT NULL ,
434
434
" user_id" " uuid" NOT NULL ,
435
435
" content" " text" NOT NULL ,
436
- " created_at" timestamp (3 ) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL ,
437
- " updated_at" timestamp (3 ) without time zone NOT NULL
436
+ " created_at" timestamp (3 ) with time zone DEFAULT CURRENT_TIMESTAMP NOT NULL ,
437
+ " updated_at" timestamp (3 ) with time zone NOT NULL
438
438
);
439
439
440
440
@@ -457,8 +457,8 @@ CREATE TABLE IF NOT EXISTS "public"."review_suggestion_snippets" (
457
457
" review_feedback_id" uuid NOT NULL ,
458
458
" filename" " text" NOT NULL ,
459
459
" snippet" " text" NOT NULL ,
460
- " created_at" timestamp (3 ) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL ,
461
- " updated_at" timestamp (3 ) without time zone NOT NULL
460
+ " created_at" timestamp (3 ) with time zone DEFAULT CURRENT_TIMESTAMP NOT NULL ,
461
+ " updated_at" timestamp (3 ) with time zone NOT NULL
462
462
);
463
463
464
464
0 commit comments