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
protected function up()
{
DBManager::get()->exec(
"ALTER IGNORE TABLE `help_content`
"ALTER TABLE `help_content`
ADD COLUMN comment TEXT NULL"
);
}
......@@ -21,7 +21,7 @@ class AddCommentToHelpContent extends Migration
protected function down()
{
DBManager::get()->exec(
"ALTER IGNORE TABLE `help_content`
"ALTER TABLE `help_content`
DROP COLUMN comment"
);
}
......
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