mirror of
https://github.com/DarkflameUniverse/DarkflameServer
synced 2024-08-30 18:43:58 +00:00
14 lines
177 B
C++
14 lines
177 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
struct Migration {
|
|
std::string data;
|
|
std::string name;
|
|
};
|
|
|
|
namespace MigrationRunner {
|
|
void RunMigrations();
|
|
void RunSQLiteMigrations();
|
|
};
|