// This file is part of "Migratex - A Migrations Toolkit".
//
// This source code is licensed under the MIT license, please view the LICENSE
// file distributed with this source code. For the full
// information and documentation: https://github.com/nicolab/migratex
// -----------------------------------------------------------------------------
use Result;
use async_trait;
/// A migration is a version of a change in the data.
/// It can be a database migration, a file migration, a binary migration, etc.
/// It can be up (upgrade) or down (downgrade / rollback).
/// BoxMigration is the type of a migration.
pub type BoxMigration<MigContext> = ;