You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/schema.md
+13-2Lines changed: 13 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,5 @@
1
1
# Schema Documentation for cardano-db-sync
2
2
3
-
Schema version: 13.2.0.2
4
3
**Note:** This file is auto-generated from the documentation in cardano-db/src/Cardano/Db/Schema.hs by the command `cabal run -- gen-schema-docs doc/schema.md`. This document should only be updated during the release process and updated on the release branch.
5
4
6
5
### `schema_version`
@@ -87,6 +86,18 @@ A table for transactions within a block on the chain.
87
86
|`valid_contract`| boolean | False if the contract is invalid. True if the contract is valid or there is no contract. |
88
87
|`script_size`| word31type | The sum of the script sizes (in bytes) of scripts in the transaction. |
89
88
89
+
### `tx_cbor`
90
+
91
+
A table holding raw CBOR encoded transactions.
92
+
93
+
* Primary Id: `id`
94
+
95
+
| Column name | Type | Description |
96
+
|-|-|-|
97
+
|`id`| integer (64) ||
98
+
|`tx_id`| integer (64) | The Tx table index of the transaction encoded in this table. |
99
+
|`bytes`| bytea | CBOR encoded transaction. |
100
+
90
101
### `reverse_index`
91
102
92
103
A table for reverse indexes for the minimum input output and multi asset output related with this block. New in v13.1
@@ -789,7 +800,7 @@ A table for every unique drep key hash. The existance of an entry doesn't mean t
0 commit comments