This commit is contained in:
Alexandre Bodin 2022-03-23 11:15:25 +01:00
parent 4213aed07b
commit 06c9939fa7

View File

@ -199,10 +199,6 @@ const createHelpers = db => {
const createColumn = (tableBuilder, column) => {
const { type, name, args = [], defaultTo, unsigned, notNullable } = column;
if (name === 'id') {
console.log(name, column);
}
const col = tableBuilder[type](name, ...args);
if (unsigned === true) {