Skip to content

Commit

Permalink
fixes #318
Browse files Browse the repository at this point in the history
  • Loading branch information
tgloeggl committed Sep 29, 2021
1 parent f9212bd commit 832de2f
Show file tree
Hide file tree
Showing 4 changed files with 59 additions and 11,169 deletions.
18 changes: 18 additions & 0 deletions migrations/042_fix_plugintype.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<?php
class FixPluginType extends Migration
{

function up()
{
DBManager::get()->query("UPDATE plugins
SET plugintype = 'PortalPlugin,StandardPlugin,StudipModule,SystemPlugin'
WHERE pluginclassname = 'MeetingPlugin'");

SimpleOrMap::expireTableScheme();
}

function down()
{
}

}
Loading

0 comments on commit 832de2f

Please sign in to comment.