Projekt

Allgemein

Profil

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

DatabaseMigration::DatabaseMigration() : Entity() {

}

d568923d Christian Ehringfeld
DatabaseMigration::DatabaseMigration(QString version, QDateTime applyTime) : Entity() {
1e213c09 Christian Ehringfeld
this->version = version;
this->applyTime = applyTime;
}

7e233492 Christian Ehringfeld
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;
}