Skip to content

Commit 9cbf4b9

Browse files
authored
Merge branch 'main' into feat/CM-361-part-1
2 parents f0efc5a + d670a9a commit 9cbf4b9

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
create table if not exists git."repoAffiliationRegistry" (
2+
"repoId" uuid primary key references public.repositories(id) on delete cascade,
3+
"filePath" text,
4+
"fileHash" text,
5+
"status" text not null,
6+
"snapshot" jsonb,
7+
"lastRunAt" timestamptz,
8+
"createdAt" timestamptz not null default now(),
9+
"updatedAt" timestamptz not null default now()
10+
);

0 commit comments

Comments
 (0)