9 lines
264 B
C++
9 lines
264 B
C++
#pragma once
|
|
#include <string>
|
|
|
|
namespace Migrations
|
|
{
|
|
int EpochToDateTime(std::string const & sourceDatabase, std::string const & destinationDatabase);
|
|
|
|
int UpdateSummaryTable(std::string const & sourceDatabase, std::string const & destinationDatabase);
|
|
} |