Skip to content

Commit 9f22056

Browse files
committed
fix: linting issue
Signed-off-by: Muhammad Aaqil <[email protected]>
1 parent 3931fb6 commit 9f22056

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

lib/datasource.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1726,15 +1726,15 @@ DataSource.prototype.discoverSchemas = function(tableName, options, cb) {
17261726
precision: item.dataPrecision,
17271727
scale: item.dataScale,
17281728
generated: item.generated || false,
1729-
}
1729+
};
17301730
if (
17311731
item.indexType === 'BTREE' &&
1732-
item.indexName !== 'PRIMARY' &&
1732+
item.indexName !== 'PRIMARY' &&
17331733
!item.isForeignKey
17341734
) {
1735-
propertyDetails.index = {unique: true}
1735+
propertyDetails.index = {unique: true};
17361736
}
1737-
1737+
17381738
if (pks[item.columnName]) {
17391739
propertyDetails[propName].id = pks[item.columnName];
17401740
}

0 commit comments

Comments
 (0)