Skip to content
Snippets Groups Projects
Commit a47ef634 authored by Jan-Hendrik Willms's avatar Jan-Hendrik Willms
Browse files

Use MySQL compatible sql, re #758

parent 9c51abb9
No related branches found
No related tags found
No related merge requests found
...@@ -12,7 +12,7 @@ class AddCommentToHelpContent extends Migration ...@@ -12,7 +12,7 @@ class AddCommentToHelpContent extends Migration
protected function up() protected function up()
{ {
DBManager::get()->exec( DBManager::get()->exec(
"ALTER IGNORE TABLE `help_content` "ALTER TABLE `help_content`
ADD COLUMN comment TEXT NULL" ADD COLUMN comment TEXT NULL"
); );
} }
...@@ -21,7 +21,7 @@ class AddCommentToHelpContent extends Migration ...@@ -21,7 +21,7 @@ class AddCommentToHelpContent extends Migration
protected function down() protected function down()
{ {
DBManager::get()->exec( DBManager::get()->exec(
"ALTER IGNORE TABLE `help_content` "ALTER TABLE `help_content`
DROP COLUMN comment" DROP COLUMN comment"
); );
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment