Skip to content

Commit

Permalink
Revert order model change.
Browse files Browse the repository at this point in the history
  • Loading branch information
lcwik committed Nov 2, 2023
1 parent 54767e4 commit 31cfddc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion indexer/packages/postgres/src/models/order-model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ export default class OrderModel extends BaseModel {
goodTilBlock: { type: ['string', 'null'], default: null, pattern: IntegerPattern },
goodTilBlockTime: { type: ['string', 'null'], default: null, format: 'date-time' },
createdAtHeight: { type: ['string', 'null'], default: null, pattern: IntegerPattern },
clientMetadata: { type: ['string', 'null'], pattern: IntegerPattern },
clientMetadata: { type: 'string', pattern: IntegerPattern },
triggerPrice: { type: ['string', 'null'], default: null, pattern: NonNegativeNumericPattern },
updatedAt: { type: 'string', format: 'date-time' },
updatedAtHeight: { type: 'string', pattern: IntegerPattern },
Expand Down

0 comments on commit 31cfddc

Please sign in to comment.