Select Git revision
5.2.7_add_comment_to_help_content.php
Forked from
Stud.IP / Stud.IP
Source project has a limited visibility.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
5.2.7_add_comment_to_help_content.php 518 B
<?php
class AddCommentToHelpContent extends Migration
{
public function description()
{
return 'Adds the column "comment" to the help_content table.';
}
protected function up()
{
DBManager::get()->exec(
"ALTER IGNORE TABLE `help_content`
ADD COLUMN comment TEXT NULL"
);
}
protected function down()
{
DBManager::get()->exec(
"ALTER IGNORE TABLE `help_content`
DROP COLUMN comment"
);
}
}