Skip to content

Commit d670a9a

Browse files
authored
feat: add repo affiliation registry table (CM-361) (#4279)
Signed-off-by: Yeganathan S <63534555+skwowet@users.noreply.github.com>
1 parent 58ed2cd commit d670a9a

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)