Add docs for TABLES constant

This commit is contained in:
Sylvain Bellemare 2017-01-12 13:41:27 +01:00 committed by Sylvain Bellemare
parent d71fdcbe78
commit 04789aad96

View File

@ -1,4 +1,15 @@
"""Database creation and schema-providing interfaces for backends."""
"""Database creation and schema-providing interfaces for backends.
Attributes:
TABLES (tuple): The three standard tables BigchainDB relies on:
* ``backlog`` for incoming transactions awaiting to be put into
a block.
* ``bigchain`` for blocks.
* ``votes`` to store votes for each block by each federation
node.
"""
from functools import singledispatch
import logging