Skip to content

Commit 832de2f

Browse files
committed
fixes #318
1 parent f9212bd commit 832de2f

File tree

4 files changed

+59
-11169
lines changed

4 files changed

+59
-11169
lines changed

migrations/042_fix_plugintype.php

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<?php
2+
class FixPluginType extends Migration
3+
{
4+
5+
function up()
6+
{
7+
DBManager::get()->query("UPDATE plugins
8+
SET plugintype = 'PortalPlugin,StandardPlugin,StudipModule,SystemPlugin'
9+
WHERE pluginclassname = 'MeetingPlugin'");
10+
11+
SimpleOrMap::expireTableScheme();
12+
}
13+
14+
function down()
15+
{
16+
}
17+
18+
}

0 commit comments

Comments
 (0)