private function createCalendarChangesTable(Schema $schema) {
        if (!$schema->hasTable("{$this->prefix}calendarchanges")) {
            $table = $schema->createTable("{$this->prefix}calendarchanges");
            $table->addColumn('id', 'integer', [
                'autoincrement' => true,