Data Stores =========== This tutorial covers how to define data stores (tables and fields) in your model using ``daitum_model``. .. note:: This tutorial is a work in progress. Full content coming soon. Overview -------- Data stores are the foundation of any Daitum model. They define the structure of your data — the tables your model reads from and writes to. Key concepts: - **Tables** — named collections of records - **Fields** — typed columns within a table (text, number, datetime, etc.) - **Calculated fields** — fields whose values are derived from formulas Next Steps ---------- Continue with the :doc:`data_processors` tutorial to learn how to transform your data.