Struct leetcode_tui_rs::migrations::SchemaManager
source · pub struct SchemaManager<'c> { /* private fields */ }
Expand description
Helper struct for writing migration scripts in migration file
Implementations§
source§impl<'c> SchemaManager<'c>
impl<'c> SchemaManager<'c>
pub fn new<T>(conn: T) -> SchemaManager<'c>where T: IntoSchemaManagerConnection<'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) -> &SchemaManagerConnection<'c>
source§impl<'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>>
source§impl<'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>>
source§impl<'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§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more