diff --git a/db/migrations/5.2.7_add_comment_to_help_content.php b/db/migrations/5.2.7_add_comment_to_help_content.php index 38d3f7a8672243ad32c060ea8837b269832a32a1..d87366d7bf9d17628c47d25ed1f45da60c9bce80 100644 --- a/db/migrations/5.2.7_add_comment_to_help_content.php +++ b/db/migrations/5.2.7_add_comment_to_help_content.php @@ -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" ); }