diff options
author | Alex Auvolat <alex@adnab.me> | 2020-07-08 16:10:53 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2020-07-08 16:10:53 +0200 |
commit | 86bf4dedac2cc7ecfe9ca539f5500d162eabe704 (patch) | |
tree | 27014f21053581958c097988d1f5053560316dc5 /src/table/lib.rs | |
parent | 86fb7bbba5aefc797f359bd84676637f0232b709 (diff) | |
download | garage-86bf4dedac2cc7ecfe9ca539f5500d162eabe704.tar.gz garage-86bf4dedac2cc7ecfe9ca539f5500d162eabe704.zip |
Add support for model migrations
Diffstat (limited to 'src/table/lib.rs')
-rw-r--r-- | src/table/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/table/lib.rs b/src/table/lib.rs index f490b491..e30a6665 100644 --- a/src/table/lib.rs +++ b/src/table/lib.rs @@ -3,9 +3,11 @@ #[macro_use] extern crate log; +pub mod schema; pub mod table; pub mod table_fullcopy; pub mod table_sharded; pub mod table_sync; pub use table::*; +pub use schema::*; |