* Running atomic migration * refactor * clippy * visibility * Execute migration in transaction when it's a Postgres connection * Testing rolling back on migrate up and down * lifetimes elision * typo * abort migration before committing nested transaction
14 lines
299 B
Rust
14 lines
299 B
Rust
#[cfg(feature = "cli")]
|
|
pub use crate::cli;
|
|
|
|
pub use crate::{
|
|
IntoSchemaManagerConnection, MigrationName, MigrationTrait, MigratorTrait, SchemaManager,
|
|
SchemaManagerConnection,
|
|
};
|
|
pub use async_trait;
|
|
pub use sea_orm::{
|
|
self,
|
|
sea_query::{self, *},
|
|
DbErr, DeriveMigrationName,
|
|
};
|