openehr-postgresql 0.6.0

openEHR persistence for PostgreSQL: schema dialect and DDL
Documentation
1
2
3
4
5
6
7
8
9
//! Prints the DDL this dialect emits, so a reader can see it without
//! reading the generator.

fn main() {
    print!(
        "{}",
        openehr_store::ddl_script(&openehr_postgresql::PostgresqlDialect)
    );
}