aboutsummaryrefslogtreecommitdiff
path: root/db/migrations/1.135_tic_4011_remove_teilnehmer_view.php
blob: bbf6b29cc8af85e4f2c3ba70b1441d823b5a61eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?
Class Tic4011RemoveTeilnehmerView extends Migration {

    function description()
    {
        return 'remove unused table teilnehmer_view';
    }


    function up()
    {
        DBManager::get()->exec("DROP TABLE `teilnehmer_view`");
    }

    function down()
    {
        ;
    }
}