Skip to content

Commit

Permalink
add columns to paima-tables
Browse files Browse the repository at this point in the history
  • Loading branch information
ecioppettini committed Mar 26, 2024
1 parent 00587d2 commit 4a855b4
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/node-sdk/paima-db/src/paima-tables.ts
Original file line number Diff line number Diff line change
Expand Up @@ -431,6 +431,8 @@ CREATE TABLE cde_cardano_mint_burn(
tx_id TEXT NOT NULL,
metadata TEXT NOT NULL,
assets JSONB NOT NULL,
inputAddresses JSONB NOT NULL,
outputAddresses JSONB NOT NULL,
PRIMARY KEY (cde_id, tx_id)
)
`;
Expand All @@ -443,6 +445,8 @@ const TABLE_DATA_CDE_CARDANO_MINT_BURN: TableData = {
['tx_id', 'text', 'NO', ''],
['metadata', 'text', 'NO', ''],
['assets', 'jsonb', 'NO', ''],
['inputAddresses', 'jsonb', 'NO', ''],
['outputAddresses', 'jsonb', 'NO', ''],
]),
serialColumns: [],
creationQuery: QUERY_CREATE_TABLE_CDE_CARDANO_MINT_BURN,
Expand Down

0 comments on commit 4a855b4

Please sign in to comment.