Enum db_up::MigrationStatus
source · pub enum MigrationStatus {
InProgress,
Deployed,
}
Expand description
Status of a migration.
Variants§
InProgress
Migration is in progress.
The migration of this version has been started, but not finished yet. Depending on the database driver and transaction management, this status may never actually land in the database.
Deployed
Migration has been finished.
Trait Implementations§
source§impl Clone for MigrationStatus
impl Clone for MigrationStatus
source§fn clone(&self) -> MigrationStatus
fn clone(&self) -> MigrationStatus
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more