Projekt

Allgemein

Profil

Herunterladen als
Herunterladen (491 Bytes) Statistiken
| Zweig: | Revision:
7e233492 Christian Ehringfeld
#include "databasemigration.h"
using namespace CuteEntityManager;

DatabaseMigration::DatabaseMigration() : Entity() {

}

DatabaseMigration::~DatabaseMigration() {

}
586bb527 Christian Ehringfeld
QString DatabaseMigration::getVersion() const {
7e233492 Christian Ehringfeld
return version;
}

586bb527 Christian Ehringfeld
void DatabaseMigration::setVersion(const QString &value) {
7e233492 Christian Ehringfeld
version = value;
}
586bb527 Christian Ehringfeld
QDateTime DatabaseMigration::getApplyTime() const {
7e233492 Christian Ehringfeld
return applyTime;
}

586bb527 Christian Ehringfeld
void DatabaseMigration::setApplyTime(const QDateTime &value) {
7e233492 Christian Ehringfeld
applyTime = value;
}