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
Describe the bug
When running pnpm typeorm:migration-revert, the CLI throws a MariaDB syntax error due to incorrect SQL generation. The query includes double quotes around the table name and column name, which is invalid in MariaDB syntax.
To Reproduce
Steps to reproduce the behavior:
Run pnpm typeorm:migration-revert
A migration attempting to DROP COLUMN is triggered
The generated SQL should be valid for MariaDB. Specifically, double quotes (") should be replaced with backticks (`) when referring to table and column names.
Screenshots
Flow No specific flow needed to reproduce — issue occurs during migration revert.
Setup
Flowise Version : 3.0.1
OS: macOS
The text was updated successfully, but these errors were encountered:
ejrtks1020
added a commit
to ejrtks1020/Flowise
that referenced
this issue
Jun 3, 2025
Describe the bug
When running
pnpm typeorm:migration-revert
, the CLI throws a MariaDB syntax error due to incorrect SQL generation. The query includes double quotes around the table name and column name, which is invalid in MariaDB syntax.To Reproduce
Steps to reproduce the behavior:
pnpm typeorm:migration-revert
DROP COLUMN
is triggeredExpected behavior
https://github.com/FlowiseAI/Flowise/blob/63ff703e7a223bdb37d8fe0dcf0a06800adc2755/packages/server/src/database/migrations/mariadb/1744964560174-AddErrorToEvaluationRun.ts#L10C47-L10C61
The generated SQL should be valid for MariaDB. Specifically, double quotes (
"
) should be replaced with backticks (`) when referring to table and column names.Screenshots

Flow
No specific flow needed to reproduce — issue occurs during migration revert.
Setup
The text was updated successfully, but these errors were encountered: