toolu-orm-macros 0.1.2

Proc macros (Table, FromRow, relations) for toolu-orm
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Tests for the `#[table]` macro across all features.
//!
//! # Public API
//!
//! Tests are organized by category:
//! - `schema_basics` — core table/column generation
//! - `column_types_and_fk` — new types, FK actions, strict mode
//! - `enums_and_indexes` — ColumnEnum derive, index parsing
//! - `views` — view macros (omit/pick)
//! - `builder_methods` — companion modules, factory methods, serde

pub mod builder_methods;
pub mod column_types_and_fk;
pub mod enums_and_indexes;
pub mod schema_basics;
pub mod views;