Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix #638 and #639: treat single column unique indexes as primary key #640

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 23 additions & 6 deletions src/auto-builder.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import _ from "lodash";
import { Dialect, QueryInterface, QueryTypes, Sequelize } from "sequelize";
import { ColumnsDescription, Dialect, QueryInterface, QueryTypes, Sequelize } from 'sequelize';
import { AutoOptions } from ".";
import { ColumnElementType, ColumnPrecision, DialectOptions, FKRow, FKSpec, TriggerCount } from "./dialects/dialect-options";
import { dialects } from "./dialects/dialects";
Expand Down Expand Up @@ -187,12 +187,11 @@ export class AutoBuilder {
this.tableData.indexes[makeTableQName(table)] = await this.queryInterface.showIndex(
{ tableName: table.table_name, schema: table.table_schema }) as IndexSpec[];

// if there is no primaryKey, and `id` field exists, then make id the primaryKey (#480)
// if there is no primaryKey, and a single column unique index exists, or an `id` field exists, then make that field the primaryKey (#480)
if (!_.some(fields, { primaryKey: true })) {
const idname = _.keys(fields).find(f => f.toLowerCase() === 'id');
const idfield = idname && fields[idname];
if (idfield) {
idfield.primaryKey = true;
const pkField = this.getUniqueIndexField(fields, this.tableData.indexes[makeTableQName(table)]) || this.getIdField(fields);
if (pkField) {
pkField.primaryKey = true;
}
}

Expand All @@ -207,6 +206,24 @@ export class AutoBuilder {
}
}

private getUniqueIndexField(fields: ColumnsDescription, tableIndexes: IndexSpec[]) {
const uniqueIndex = tableIndexes.find(index => index.unique && index.fields.length === 1 );
if(uniqueIndex) {
const indexColumnName = uniqueIndex.fields[0].attribute.toLowerCase();
const fieldName = _.keys(fields).find(f => f.toLowerCase() === indexColumnName);
const field = fieldName && fields[fieldName];
if(field && !field.allowNull) {
return field;
}
}
}


private getIdField(fields: ColumnsDescription) {
const idname = _.keys(fields).find(f => f.toLowerCase() === 'id');
return idname && fields[idname];
}

private executeQuery<T>(query: string): Promise<T[]> {
return this.sequelize.query(query, {
type: QueryTypes.SELECT,
Expand Down
6 changes: 5 additions & 1 deletion test/build.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,9 @@ describe(helpers.getTestDialectTeaser("sequelize-auto build"), function() {

auto.build().then(tableData => {
callback(tableData);
}).finally(() => {
done();
}).catch((e) => {
done(e);
})
}

Expand Down Expand Up @@ -71,6 +72,9 @@ describe(helpers.getTestDialectTeaser("sequelize-auto build"), function() {
const fkParents = foreignKeys[isSnakeTables ? 'parents': 'Parents'];
const fkKids = foreignKeys[isSnakeTables ? 'kids': 'Kids'];

const paranoidPkColumn = tables[isSnakeTables ? 'paranoid_users': 'ParanoidUsers'].username;
expect(paranoidPkColumn.primaryKey).to.equal(true);

if (helpers.getTestDialect() === "sqlite") {
expect(foreignKeys).to.have.keys(['Kids', 'Parents', 'ParanoidUsers']);
expect(fkParanoidUsers).to.include.keys(['UserId']);
Expand Down
3 changes: 2 additions & 1 deletion test/helpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,14 +66,15 @@ module.exports = {
});

test.ParanoidUser = test.sequelize.define('ParanoidUser', {
username: { type: Sequelize.STRING }
username: { type: Sequelize.STRING, unique: true, allowNull: false }
},
{
paranoid: true,
tableName: isSnakeTables ? 'paranoid_users' : undefined
}
);

test.ParanoidUser.removeAttribute('id');
test.ParanoidUser.belongsTo(test.User);

// test data for relationships across schemas
Expand Down