Rename to schema

This commit is contained in:
Billy Chan 2021-08-31 12:49:07 +08:00
parent d80ea396ab
commit 8a81e43d2e
No known key found for this signature in database
GPG Key ID: A2D690CAC7DF3CC7
2 changed files with 2 additions and 3 deletions

View File

@ -6,7 +6,7 @@ mod model;
pub mod prelude;
mod primary_key;
mod relation;
mod create_stmt;
mod schema;
pub use active_model::*;
pub use base_entity::*;
@ -16,4 +16,4 @@ pub use model::*;
// pub use prelude::*;
pub use primary_key::*;
pub use relation::*;
pub use create_stmt::*;
pub use schema::*;

View File

@ -152,7 +152,6 @@ impl<EntityTrait> CreateStatementOf for EntityTrait {}
#[cfg(test)]
mod tests {
use crate::{CreateStatementOf, tests_cfg};
#[test]