DarkflameServer/dDatabase/MigrationRunner.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
177 B
C
Raw Normal View History

2022-07-10 19:40:26 +00:00
#pragma once
#include <string>
2022-07-10 19:40:26 +00:00
struct Migration {
std::string data;
std::string name;
};
namespace MigrationRunner {
void RunMigrations();
void RunSQLiteMigrations();
2022-07-10 19:40:26 +00:00
};