Skip to content

Commit

Permalink
fix: make reportId in ReputationHistory table nullable
Browse files Browse the repository at this point in the history
  • Loading branch information
Xiawpohr committed Sep 25, 2024
1 parent 3f916ce commit 105288c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/relay/src/db/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,11 @@ const _schema = [
['epochKey', 'String'],
['score', 'Int'],
['type', 'Int'],
['reportId', 'String'],
{
name: 'reportId',
type: 'String',
optional: true,
},
{
name: 'report',
type: 'Object',
Expand Down

0 comments on commit 105288c

Please sign in to comment.