This commit is contained in:
Jan Prochazka
2021-05-16 13:58:22 +02:00
parent 3a08462018
commit 2376cb30db
2 changed files with 3 additions and 4 deletions

View File

@@ -57,7 +57,6 @@ class Analyser extends DatabaseAnalyser {
const fkColumns = await this.driver.query(this.pool, this.createQuery('foreignKeys', ['tables']));
const views = await this.driver.query(this.pool, this.createQuery('views', ['views']));
const routines = await this.driver.query(this.pool, this.createQuery('routines', ['procedures', 'functions']));
// console.log('PG fkColumns', fkColumns.rows);
return {
tables: tables.rows.map(table => {