['column1', 'column2'], ...] * @since 13.0.0 */ #[\Override] protected function getColumnsByTable() { return [ 'activity' => ['activity_id', 'object_id'], 'activity_mq' => ['mail_id'], ]; } /** * @param IOutput $output * @param \Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper` * @param array $options * @return null|ISchemaWrapper * @since 13.0.0 */ #[\Override] public function changeSchema(IOutput $output, \Closure $schemaClosure, array $options) { /** * FIXME To prevent slowness on update we don't change the schema. * FIXME Instead it can be updated with ./occ db:convert-filecache-bigint * parent::changeSchema($output, $schemaClosure, $options); */ return null; } }