velocious 1.0.49 → 1.0.50

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "velocious": "bin/velocious.js"
4
4
  },
5
5
  "name": "velocious",
6
- "version": "1.0.49",
6
+ "version": "1.0.50",
7
7
  "main": "index.js",
8
8
  "scripts": {
9
9
  "test": "VELOCIOUS_TEST_DIR=../ cd spec/dummy && npx velocious test",
@@ -16,8 +16,6 @@ export default class VelociousDatabaseDriversBase {
16
16
  }
17
17
 
18
18
  async addForeignKey(tableName, columnName, referencedTableName, referencedColumnName, args) {
19
- console.log("ADD FOREIGN KEY")
20
-
21
19
  const tableForeignKeyArgs = Object.assign(
22
20
  {
23
21
  columnName,
@@ -89,8 +89,6 @@ export default class VelociousDatabaseConnectionDriversSqliteSqlAlterTable exten
89
89
  }
90
90
 
91
91
  for (const foreignKey of tableData.getForeignKeys()) {
92
- console.log(`Foreign key`, {foreignKey})
93
-
94
92
  if (foundForeignKeys.includes(foreignKey.getName())) continue
95
93
 
96
94
  // Register foreign key on the table