Add descriptions for all datastore key types

This commit is contained in:
Tobie Morgan Hitchcock 2023-02-12 12:19:20 +00:00
parent 94cdef565f
commit a4db20fb05

View file

@ -30,27 +30,27 @@
/// ///
/// Index /*{ns}*{db}*{tb}¤{ix}{fd}{id} /// Index /*{ns}*{db}*{tb}¤{ix}{fd}{id}
/// ///
pub mod database; pub mod database; // Stores the key prefix for all keys under a database
pub mod db; pub mod db; // Stores a DEFINE DATABASE config definition
pub mod dl; pub mod dl; // Stores a DEFINE LOGIN ON DATABASE config definition
pub mod dt; pub mod dt; // Stores a DEFINE LOGIN ON DATABASE config definition
pub mod ev; pub mod ev; // Stores a DEFINE EVENT config definition
pub mod fd; pub mod fd; // Stores a DEFINE FIELD config definition
pub mod ft; pub mod ft; // Stores a DEFINE TABLE AS config definition
pub mod graph; pub mod graph; // Stores a graph edge pointer
pub mod index; pub mod index; // Stores an index entry
pub mod ix; pub mod ix; // Stores a DEFINE INDEX config definition
pub mod kv; pub mod kv; // Stores the key prefix for all keys
pub mod lq; pub mod lq; // Stores a LIVE SELECT query definition on the database
pub mod lv; pub mod lv; // Stores a LIVE SELECT query definition on the table
pub mod namespace; pub mod namespace; // Stores the key prefix for all keys under a namespace
pub mod nl; pub mod nl; // Stores a DEFINE LOGIN ON NAMESPACE config definition
pub mod ns; pub mod ns; // Stores a DEFINE NAMESPACE config definition
pub mod nt; pub mod nt; // Stores a DEFINE TOKEN ON NAMESPACE config definition
pub mod pa; pub mod pa; // Stores a DEFINE PARAM config definition
pub mod sc; pub mod sc; // Stores a DEFINE SCOPE config definition
pub mod scope; pub mod scope; // Stores the key prefix for all keys under a scope
pub mod st; pub mod st; // Stores a DEFINE TOKEN ON SCOPE config definition
pub mod table; pub mod table; // Stores the key prefix for all keys under a table
pub mod tb; pub mod tb; // Stores a DEFINE TABLE config definition
pub mod thing; pub mod thing; // Stores a record id