hasTable('calendar_' . $type)) { $table = $schema->createTable('calendar_' . $type); $table->addColumn('id', Types::BIGINT, [ 'autoincrement' => true, 'notnull' => true, 'length' => 11, 'unsigned' => true, ]); $table->addColumn('backend_id', Types::STRING, [ 'notnull' => false, 'length' => 64, ]); $table->addColumn('resource_id', Types::STRING, [ 'notnull' => false, 'length' => 64, ]); $table->addColumn('email', Types::STRING, [ 'notnull' => false, 'length' => 255, ]); $table->addColumn('displayname', Types::STRING, [ 'notnull' => false, 'length' => 255, ]); $table->addColumn('group_restrictions', Types::STRING, [ 'notnull' => false, 'length' => 4000, ]); $table->setPrimaryKey(['id']); $table->addIndex(['backend_id', 'resource_id'], 'calendar_' . $type . '_bkdrsc'); $table->addIndex(['email'], 'calendar_' . $type . '_email'); $table->addIndex(['displayname'], 'calendar_' . $type . '_name'); } } return $schema; } }