Skip to content

Commit

Permalink
change terminal_status type to varchar(18)
Browse files Browse the repository at this point in the history
  • Loading branch information
ConjunctiveNormalForm committed Mar 19, 2024
1 parent 03e497d commit 59da576
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/stacks/analytics-stack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ enum RS_DATA_TYPES {
TIMESTAMP_MS = 'char(13)', // unix timestamp in milliseconds
BIGINT = 'bigint',
INTEGER = 'integer',
TERMINAL_STATUS = 'varchar(9)', // 'filled' || 'expired' || 'cancelled || 'new' || 'open'
TERMINAL_STATUS = 'varchar(18)', // 'filled' || 'expired' || 'cancelled || 'new' || 'open' || 'insufficient-funds'
TRADE_TYPE = 'varchar(12)', // 'EXACT_INPUT' || 'EXACT_OUTPUT'
ROUTING = 'text',
CALL_DATA = 'varchar(5000)',
Expand Down

0 comments on commit 59da576

Please sign in to comment.