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

Test for changeColumn breaking on composite primary keys #283

Open
wants to merge 10 commits into
base: main
Choose a base branch
from
Open
Prev Previous commit
Next Next commit
WIP migrate to latest sequelize-v7
Hornwitser committed Oct 30, 2024
commit 4676ef777ac669a8d7463ca3914fd538b83e8fa0
2 changes: 1 addition & 1 deletion dev/prepare-ci.sh
Original file line number Diff line number Diff line change
@@ -11,7 +11,7 @@ elif [ "$DIALECT" = "mysql" ]; then
elif [ "$DIALECT" = "mariadb" ]; then
yarn add mariadb@^2 @sequelize/mariadb --ignore-engines;
elif [ "$DIALECT" = "sqlite" ]; then
yarn add sqlite3@^5 @sequelize/sqlite --ignore-engines;
yarn add sqlite3@^5 @sequelize/sqlite3 --ignore-engines;
elif [ "$DIALECT" = "mssql" ]; then
yarn add tedious@^8 @sequelize/mssql --ignore-engines;
fi
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -13,7 +13,7 @@
"cross-env": "^7",
"fs-jetpack": "^4",
"sequelize": "^6",
"@sequelize/core": "alpha",
"@sequelize/core": "latest",
"sinon": "^13",
"sinon-chai": "^3"
},