rake-db 2.10.37 → 2.10.39

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/dist/index.js CHANGED
@@ -1126,7 +1126,6 @@ const astToQueries = (ast, snakeCase, language) => {
1126
1126
  );
1127
1127
  } else if (item.type === "drop") {
1128
1128
  const name = getColumnName(item.item, key, snakeCase);
1129
- addColumnIndex(dropIndexes, name, item.item);
1130
1129
  alterTable.push(
1131
1130
  `DROP COLUMN "${name}"${item.dropMode ? ` ${item.dropMode}` : ""}`
1132
1131
  );