Skip to content
Snippets Groups Projects
Commit c471396d authored by Allen Gilliland's avatar Allen Gilliland
Browse files

add a couple of MySQL specific mods to our migrations where we need to use the...

add a couple of MySQL specific mods to our migrations where we need to use the `TEXT` type instead of `VARCHAR` on mysql.
parent f0fe5947
No related branches found
No related tags found
No related merge requests found
......@@ -61,3 +61,8 @@ databaseChangeLog:
replace:
replace: WITHOUT
with: WITH
- modifySql:
dbms: mysql
replace:
replace: object VARCHAR
with: object TEXT
......@@ -85,3 +85,8 @@ databaseChangeLog:
replace:
replace: WITHOUT
with: WITH
- modifySql:
dbms: mysql
replace:
replace: details VARCHAR
with: details TEXT
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