Nut/test/tst_upgrades/db1.h

22 lines
245 B
C
Raw Normal View History

2019-02-14 22:25:53 +08:00
#ifndef DB1_H
#define DB1_H
#include <Database>
class Table1;
class DB1 : public Nut::Database
{
Q_OBJECT
NUT_DB_VERSION(1)
NUT_DECLARE_TABLE(Table1, sampleTable)
public:
DB1();
};
Q_DECLARE_METATYPE(DB1*)
#endif // DB1_H