mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 17:46:45 +00:00
fix: Make MySQL migration for nano id change compatible with version 5.7 (#6498)
* fix: Make migration for MySQL compatible with version 5.7 * fix: Correct syntax * fix: Syntax for primary key creation * fix: Remove unnecessary constraint statement * fix: Name columns for sqlite migration to prevent issues * ci: Always run DB tests with table-prefix and alt-schema * add tablePrefix to migrations (mysql not fixed) * fix character_set on mysql migrations * fix mysql collation version difference * cater for mariadb collations --------- Co-authored-by: कारतोफ्फेलस्क्रिप्ट™ <aditya@netroy.in> Co-authored-by: Michael Auerswald <michael.auerswald@gmail.com>
This commit is contained in:
12
.github/workflows/ci-postgres-mysql.yml
vendored
12
.github/workflows/ci-postgres-mysql.yml
vendored
@@ -38,19 +38,11 @@ jobs:
|
||||
|
||||
- name: Test MySQL
|
||||
working-directory: packages/cli
|
||||
run: pnpm test:mysql
|
||||
run: DB_TABLE_PREFIX=test_ pnpm test:mysql
|
||||
|
||||
- name: Test Postgres
|
||||
working-directory: packages/cli
|
||||
run: pnpm test:postgres
|
||||
|
||||
- name: Test Postgres (alternate schema)
|
||||
working-directory: packages/cli
|
||||
run: pnpm test:postgres:alt-schema
|
||||
|
||||
- name: Test Postgres (table prefix)
|
||||
working-directory: packages/cli
|
||||
run: pnpm test:postgres:with-table-prefix
|
||||
run: DB_POSTGRESDB_SCHEMA=alt_schema DB_TABLE_PREFIX=test_ pnpm test:postgres
|
||||
|
||||
- name: Notify Slack on failure
|
||||
uses: act10ns/slack@v2.0.0
|
||||
|
||||
Reference in New Issue
Block a user