#include "Migration.h" #include namespace db { namespace migrations { namespace db_builder = db::migrations::builder; std::string Migration::get_migration_name() const { return std::string(boost::core::demangled_name(BOOST_CORE_TYPEID(*this))); } std::string Migration::get_statement() const { return m_statement; } } }