aboutsummaryrefslogtreecommitdiff
path: root/db/migrations/1.92_remove_schedule_user_table.php
blob: c4e341ed33378d29ffc9823a42ada58d7e906c2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php

class RemoveScheduleUserTable extends Migration
{
    function description ()
    {
        return 'remove obsolete seminar_user_schedule-table from the db';
    }

    function up ()
    {
        // create new multi-purpose schedule table
        DBManager::get()->exec("DROP TABLE IF EXISTS seminar_user_schedule");
    }
}