ui: project settings fix

* fixed open folder dialog in project settings.
* changed foreign key relation of component_access from the element to the edge table.
This commit is contained in:
malte_langkabel
2015-09-17 16:48:05 +02:00
parent 0c7624a5ef
commit e9d45a507a
3 changed files with 4 additions and 3 deletions
+1 -1
View File
@@ -707,7 +707,7 @@ void SqliteStorage::setupTables()
"edge_id INTEGER, "
"type INTEGER NOT NULL, "
"PRIMARY KEY(id), "
"FOREIGN KEY(edge_id) REFERENCES element(id) ON DELETE CASCADE);"
"FOREIGN KEY(edge_id) REFERENCES edge(id) ON DELETE CASCADE);"
);
}