1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod alter_table;
pub mod create_table;
pub mod drop_table;

pub use alter_table::*;
pub use create_table::*;
pub use drop_table::*;

pub mod alter_database;
pub mod create_database;
pub mod drop_database;

pub use alter_database::*;
pub use create_database::*;
pub use drop_database::*;