commit 2c152ba36e76f6cfd3ed6b9f21a51d078dc3df23
Author: Christian Ehringfeld <c.ehringfeld@t-online.de>
Date:   Mon Mar 23 20:42:00 2015 +0100

    ...

diff --git a/src/schema.h b/src/schema.h
index 754bddf..9f36972 100644
--- a/src/schema.h
+++ b/src/schema.h
@@ -16,6 +16,7 @@ protected:
     virtual QString getCreateTableSql(TableSchema ts);
    virtual bool findColumns(TableSchema ts);
 
+
 };
 }
 #endif // SCHEMA_H
diff --git a/src/schema.h.autosave b/src/schema.h.autosave
deleted file mode 100644
index 6152d09..0000000
--- a/src/schema.h.autosave
+++ /dev/null
@@ -1,22 +0,0 @@
-#ifndef SCHEMA_H
-#define SCHEMA_H
-#include <QString>
-#include "tableschema.h"
-
-namespace CuteEntityManager {
-
-class Schema {
-public:
-    Schema();
-    ~Schema();
-protected:
-    virtual QList<QString> findTableNames(QString schema = "");
-    virtual QList<QString> findUniqueIndexes(QString tableName);
-    virtual TableSchema findConstraints(TableSchema ts);
-    virtual QString getCreateTableSql(TableSchema ts);
-   virtual bool findColumns(TableSchema ts);
-    
-
-};
-}
-#endif // SCHEMA_H
diff --git a/src/tableschema.h b/src/tableschema.h
index 3df5c0a..c3f59a0 100644
--- a/src/tableschema.h
+++ b/src/tableschema.h
@@ -7,6 +7,9 @@ class TableSchema {
 public:
     TableSchema();
     ~TableSchema();
+
+
+
 };
 
 }
diff --git a/src/tableschema.h.autosave b/src/tableschema.h.autosave
deleted file mode 100644
index 8021ac6..0000000
--- a/src/tableschema.h.autosave
+++ /dev/null
@@ -1,16 +0,0 @@
-#ifndef TABLESCHEMA_H
-#define TABLESCHEMA_H
-
-namespace CuteEntityManager {
-
-class TableSchema {
-public:
-    TableSchema();
-    ~TableSchema();
-    
-    
-    
-};
-
-}
-#endif // TABLESCHEMA_H
