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() { ; } }