1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/// Defines structs and functions for representing SQL database schemas.
pub mod schema;
/// Defines structs and functions for auto-generating migrations.
pub mod migrate;
/// Defines structs and functions for representing SQL queries.
pub mod query;

mod to_sql;
pub mod util;

#[doc(inline)]
pub use migrate::{Migration, MigrationOptions, migrate};
#[doc(inline)]
pub use schema::{Schema, Table, Column, Type};
#[doc(inline)]
pub use to_sql::{ToSql, Dialect};
#[doc(inline)]
pub use query::{Select, Insert, CreateIndex, CreateTable, AlterTable};