blob: 0ff3095ac7ef2f71c491dd137527d37dc10593f6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include "migration.hpp"
#include <QDebug>
using namespace migrations;
struct foo : migration
{
const QString& unique_date() const override { qDebug() << "foo"; static QString ret(""); return ret; }
bool should_run() const override { qDebug() << "bar"; return false; }
bool run() override { return false; }
};
OPENTRACK_MIGRATION(foo);
|