Struct async_sea_orm_session::prelude::SchemaManager
source · [−]pub struct SchemaManager<'c> { /* private fields */ }Expand description
Helper struct for writing migration scripts in migration file
Implementations
sourceimpl<'c> SchemaManager<'c>
impl<'c> SchemaManager<'c>
pub fn new(conn: &'c DatabaseConnection) -> SchemaManager<'c>
pub async fn exec_stmt<S>(
&self,
stmt: S
) -> impl Future<Output = Result<(), DbErr>>where
S: StatementBuilder,
pub fn get_database_backend(&self) -> DatabaseBackend
pub fn get_connection(&self) -> &'c DatabaseConnection
sourceimpl<'c> SchemaManager<'c>
impl<'c> SchemaManager<'c>
Schema Creation
pub async fn create_table(
&self,
stmt: TableCreateStatement
) -> impl Future<Output = Result<(), DbErr>>
pub async fn create_index(
&self,
stmt: IndexCreateStatement
) -> impl Future<Output = Result<(), DbErr>>
pub async fn create_foreign_key(
&self,
stmt: ForeignKeyCreateStatement
) -> impl Future<Output = Result<(), DbErr>>
pub async fn create_type(
&self,
stmt: TypeCreateStatement
) -> impl Future<Output = Result<(), DbErr>>
sourceimpl<'c> SchemaManager<'c>
impl<'c> SchemaManager<'c>
Schema Mutation
pub async fn alter_table(
&self,
stmt: TableAlterStatement
) -> impl Future<Output = Result<(), DbErr>>
pub async fn drop_table(
&self,
stmt: TableDropStatement
) -> impl Future<Output = Result<(), DbErr>>
pub async fn rename_table(
&self,
stmt: TableRenameStatement
) -> impl Future<Output = Result<(), DbErr>>
pub async fn truncate_table(
&self,
stmt: TableTruncateStatement
) -> impl Future<Output = Result<(), DbErr>>
pub async fn drop_index(
&self,
stmt: IndexDropStatement
) -> impl Future<Output = Result<(), DbErr>>
pub async fn drop_foreign_key(
&self,
stmt: ForeignKeyDropStatement
) -> impl Future<Output = Result<(), DbErr>>
pub async fn alter_type(
&self,
stmt: TypeAlterStatement
) -> impl Future<Output = Result<(), DbErr>>
pub async fn drop_type(
&self,
stmt: TypeDropStatement
) -> impl Future<Output = Result<(), DbErr>>
sourceimpl<'c> SchemaManager<'c>
impl<'c> SchemaManager<'c>
Schema Inspection
Auto Trait Implementations
impl<'c> RefUnwindSafe for SchemaManager<'c>
impl<'c> Send for SchemaManager<'c>
impl<'c> Sync for SchemaManager<'c>
impl<'c> Unpin for SchemaManager<'c>
impl<'c> UnwindSafe for SchemaManager<'c>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more