mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-05-25 16:22:26 +00:00
14 lines
227 B
C++
14 lines
227 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
#include "MigrationManager.h"
|
|
|
|
class MySQLMigrationManager : public MigrationManager {
|
|
public:
|
|
void RunMigrations(DatabaseBase* db) override;
|
|
void RunSQLiteMigrations() override;
|
|
private:
|
|
|
|
};
|