Made a start with showing foreignkeys in column list.

Not finished, need to decide what to do with multiple and multi column fkeys.
This commit is contained in:
eelke 2017-12-25 10:31:58 +01:00
parent a76686acfd
commit 190a6c04dc
14 changed files with 97 additions and 94 deletions

View file

@ -35,13 +35,13 @@ public:
void setConfig(const ConnectionConfig &config);
OpenDatabase* getDatabase() { return m_database; }
std::shared_ptr<OpenDatabase> getDatabase() { return m_database; }
private:
Ui::MainWindow *ui;
ConnectionConfig m_config;
OpenDatabase *m_database = nullptr;
std::shared_ptr<OpenDatabase> m_database;
MasterController *m_masterController;