scroll The canonical architecture goal: everything isa Thing. The `beings` DB currently holds twoconcerns — auth primitives and being profiledata. Profile data can be absorbed into the`things` DB as gem_values. Auth primitivesmust remain as structured indexed columns.**What absorbs into gem_values (Things DB):**- `being_name` → onyx - `email` → emerald- `roles` / `primary_role` / `previous_roles`→ ruby - `constellation` / `intention` →pearl - `sacred_weight` / `bestowed_coins` →topaz - `is_active` → amethyst - Alltimestamps → already on things table **Whatstays as structured auth columns:** -`being_id` / `document_id` — primary keyanchor - `sacred_fingerprint` /`current_fingerprint` — indexed auth lookup("who is this fingerprint?") -`ache_signature` — signature verification**Tables that fully absorb:** -`being_world_preferences` →`sapphire='preference'` Things (alreadymirrored) -`being_index_moons_economic_ledger` →`sapphire='coin-transaction'` Things (alreadymirrored) - `daemon_index_nodes` →`sapphire='daemon'` Things (already mirrored)**Tables that stay (auth DB — possiblyrenamed from `beings` to `auth`):** -`fingerprint_history` - `presence_sessions` -`world_state_revision` - A thin `being_auth`table: just `being_id`, `sacred_fingerprint`,`current_fingerprint`, `ache_signature` **Endstate:** One content DB (`things`), one authDB (4 tables, lightweight). Beings are fullyThings.