Skip to content
Snippets Groups Projects
Commit 7a1b97db authored by Ryan Senior's avatar Ryan Senior
Browse files

Add quoting to fix issues with newer MySQL

MySQL 8+ includes many new reserved words including words that collide
with some of our column names. This commit adds quoting to migrations
that include column names that are reserved words.
parent e63ec930
No related branches found
No related tags found
No related merge requests found
......@@ -2,6 +2,7 @@ databaseChangeLog:
- changeSet:
id: '1'
author: agilliland
objectQuotingStrategy: QUOTE_ALL_OBJECTS
changes:
- createTable:
columns:
......@@ -1698,6 +1699,7 @@ databaseChangeLog:
- changeSet:
id: 15
author: agilliland
objectQuotingStrategy: QUOTE_ALL_OBJECTS
changes:
- addColumn:
tableName: revision
......@@ -2060,6 +2062,7 @@ databaseChangeLog:
- changeSet:
id: 23
author: agilliland
objectQuotingStrategy: QUOTE_ALL_OBJECTS
changes:
- modifyDataType:
tableName: metabase_table
......@@ -3186,6 +3189,7 @@ databaseChangeLog:
- changeSet:
id: 46
author: camsaul
objectQuotingStrategy: QUOTE_ALL_OBJECTS
changes:
- addNotNullConstraint:
tableName: report_dashboardcard
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment