sql-orm 0.1.0

Public API crate for the sql-orm workspace.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use sql_orm::prelude::*;

#[derive(AuditFields)]
struct Audit {
    created_at: String,

    #[orm(column = "created_at")]
    created_on: String,
}

fn main() {}