%PDF- %PDF-
| Direktori : /home/vacivi36/intranet.vacivitta.com.br/protected/modules/calendar/migrations/ |
| Current File : /home/vacivi36/intranet.vacivitta.com.br/protected/modules/calendar/migrations/uninstall.php |
<?php
use humhub\components\Migration;
class uninstall extends Migration
{
public function up()
{
$this->dropTable('calendar_entry');
$this->dropTable('calendar_entry_participant');
$this->dropTable('calendar_reminder_sent');
$this->dropTable('calendar_reminder');
}
public function down()
{
echo "uninstall does not support migration down.\n";
return false;
}
}