toasty_core/schema/
db.rs

1mod column;
2pub use column::{Column, ColumnId, ColumnsDiff, ColumnsDiffItem};
3
4mod diff;
5pub use diff::{DiffContext, RenameHints};
6
7mod index;
8pub use index::{Index, IndexColumn, IndexId, IndexOp, IndexScope, IndicesDiff, IndicesDiffItem};
9
10mod migration;
11pub use migration::{AppliedMigration, Migration};
12
13mod pk;
14pub use pk::PrimaryKey;
15
16mod schema;
17pub use schema::{Schema, SchemaDiff};
18
19mod table;
20pub use table::{Table, TableId, TablesDiff, TablesDiffItem};
21
22mod ty;
23pub use ty::Type;