dbschema 0.1.0

Define database schema's as HCL files, and generate idempotent SQL migrations
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod ast;
pub mod builtins;
pub mod core;
pub mod data_sources;
pub mod env;
pub mod for_each;
pub mod lower;
pub mod resource_impls;

// Re-export commonly used functions for convenience
pub use builtins::create_context;
pub use core::{
    expr_to_string, expr_to_string_vec, expr_to_value, find_attr, get_attr_bool, get_attr_string,
    load_root_with_loader, resolve_module_path,
};