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.
19 lines
385 B
19 lines
385 B
#pragma once
|
|
|
|
#include <string>
|
|
#include <db/migrations/builder/Table.h>
|
|
#include <db/migrations/builder/TableBuilder.h>
|
|
|
|
namespace db {
|
|
namespace migrations {
|
|
class Migration {
|
|
public:
|
|
Migration() = default;
|
|
|
|
std::string get_statement() const;
|
|
virtual std::string get_migration_name() const;
|
|
protected:
|
|
std::string m_statement = "";
|
|
};
|
|
}
|
|
}
|