Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
create table if not exists git."repoAffiliationRegistry" (
"repoId" uuid primary key references public.repositories(id) on delete cascade,
"filePath" text,
"fileSha" varchar(64),
"status" varchar(20) not null,
Comment thread
skwowet marked this conversation as resolved.
Outdated
"snapshot" jsonb,
"lastRunAt" timestamptz,
"createdAt" timestamptz not null default now(),
"updatedAt" timestamptz not null default now()
);
Comment thread
skwowet marked this conversation as resolved.
Loading