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
{{ message }}
This repository has been archived by the owner on Nov 9, 2022. It is now read-only.
Description
All active queries that require sorting should be to tables in sixth normal form.
Primary key indexed data storing regular table metadata should be in second normal form.
Sixth normal form ensures optimal performance on queries.
Table Structure
General guideline for restructuring tables... Subject to change on implementation
Primary key for
blocks
table is changed to height and aninteger
transactions
table is converted into an auto increment table containingid
as an integer andtx_hash
as the actual transaction id.Key metadata for transactions and tags are refactored to reference this
id
as aninteger
instead ofvarchar
References
https://en.wikipedia.org/wiki/Second_normal_form
https://en.wikipedia.org/wiki/Sixth_normal_form
The text was updated successfully, but these errors were encountered: