You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"mysql2": "^3.10.0",
"sequelize": "^6.37.3",
"umzug": "^3.8.1"
node version v20.10.0
We have migrations written in typescript like
import { MigrationParams } from "@local-types";
import { DataTypes } from "sequelize";
export const up = async ({ context: sequelize }: MigrationParams) => {
await sequelize.addColumn(
// some code
);
};
export const down = async ({ context: sequelize }: MigrationParams) => {
await sequelize.removeColumn(
// some code
);
};
which gets compiled to .js files and is run through nodejs lambda
The error is happening randomly without any concurrent pattern seen.
FYI: we have few files like random_file.ts.ts in between as tech debt but couldnt reproduce with them as well
"mysql2": "^3.10.0",
"sequelize": "^6.37.3",
"umzug": "^3.8.1"
node version v20.10.0
We have migrations written in typescript like
which gets compiled to .js files and is run through nodejs lambda
The error is happening randomly without any concurrent pattern seen.
FYI: we have few files like random_file.ts.ts in between as tech debt but couldnt reproduce with them as well
also this is how i am initializing umzug
The text was updated successfully, but these errors were encountered: