diff options
| author | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2025-10-14 17:06:19 +0200 |
|---|---|---|
| committer | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2025-10-14 17:06:19 +0200 |
| commit | 653b9ae6759f63c2bee7f63501c76768f273a697 (patch) | |
| tree | 0cc4a148a6fa68e82a8872638ef63982e67f9148 /db/migrations | |
| parent | 6512f69099ae643162bae49f36d2638a6f860279 (diff) | |
Apply 3 suggestion(s) to 1 file(s)issue-5845
Diffstat (limited to 'db/migrations')
| -rw-r--r-- | db/migrations/6.2.2_remove_wiki_quicklinks.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/db/migrations/6.2.2_remove_wiki_quicklinks.php b/db/migrations/6.2.2_remove_wiki_quicklinks.php index bc7bb0d..645c80c 100644 --- a/db/migrations/6.2.2_remove_wiki_quicklinks.php +++ b/db/migrations/6.2.2_remove_wiki_quicklinks.php @@ -2,12 +2,12 @@ class RemoveWikiQuicklinks extends Migration { - function description(): string + public function description(): string { return 'Removes quicklink steps from wiki helptours.'; } - function up(): void + public function up(): void { DBManager::get()->exec( "DELETE FROM `help_tour_steps` @@ -16,7 +16,7 @@ class RemoveWikiQuicklinks extends Migration ); } - function down(): void + public function down(): void { DBManager::get()->exec( "INSERT INTO `help_tour_steps` VALUES |
