Skip to content

Commit 998cb0d

Browse files
committed
refactor: change data types for fileSha and status in repoAffiliationRegistry table
Signed-off-by: Yeganathan S <63534555+skwowet@users.noreply.github.com>
1 parent 6e839c6 commit 998cb0d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

backend/src/database/migrations/V1782387621__create_repo_affiliation_registry.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
create table if not exists git."repoAffiliationRegistry" (
22
"repoId" uuid primary key references public.repositories(id) on delete cascade,
33
"filePath" text,
4-
"fileSha" varchar(64),
5-
"status" varchar(20) not null,
4+
"fileSha" text,
5+
"status" text not null,
66
"snapshot" jsonb,
77
"lastRunAt" timestamptz,
88
"createdAt" timestamptz not null default now(),

0 commit comments

Comments
 (0)