You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

16 lines
385 B

#include "Migration.h"
#include <boost/core/typeinfo.hpp>
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;
}
}
}