feat(db): add field-definition registry repository

Implements create_field_definition, field_definition_by_key, and
list_field_definitions in db::fields, with TDD integration tests
covering text, term, and authority field type round-trips.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-06-02 10:21:39 +02:00
parent cbed662c18
commit 66ad67ca77
3 changed files with 242 additions and 0 deletions
+1
View File
@@ -3,6 +3,7 @@
pub mod audit;
pub mod authority;
pub mod catalog;
pub mod fields;
pub mod vocab;
use sqlx::postgres::{PgPool, PgPoolOptions};