mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
Merge pull request #25543 from nextcloud/deprecate/idb-events
Deprecate the internal IDBConnection event name constants
This commit is contained in:
commit
f96f0f6cad
1 changed files with 23 additions and 0 deletions
|
|
@ -51,11 +51,34 @@ use OCP\DB\QueryBuilder\IQueryBuilder;
|
|||
* @since 6.0.0
|
||||
*/
|
||||
interface IDBConnection {
|
||||
/**
|
||||
* @deprecated 22.0.0 this is an internal event
|
||||
*/
|
||||
public const ADD_MISSING_INDEXES_EVENT = self::class . '::ADD_MISSING_INDEXES';
|
||||
|
||||
/**
|
||||
* @deprecated 22.0.0 this is an internal event
|
||||
*/
|
||||
public const CHECK_MISSING_INDEXES_EVENT = self::class . '::CHECK_MISSING_INDEXES';
|
||||
|
||||
/**
|
||||
* @deprecated 22.0.0 this is an internal event
|
||||
*/
|
||||
public const ADD_MISSING_PRIMARY_KEYS_EVENT = self::class . '::ADD_MISSING_PRIMARY_KEYS';
|
||||
|
||||
/**
|
||||
* @deprecated 22.0.0 this is an internal event
|
||||
*/
|
||||
public const CHECK_MISSING_PRIMARY_KEYS_EVENT = self::class . '::CHECK_MISSING_PRIMARY_KEYS';
|
||||
|
||||
/**
|
||||
* @deprecated 22.0.0 this is an internal event
|
||||
*/
|
||||
public const ADD_MISSING_COLUMNS_EVENT = self::class . '::ADD_MISSING_COLUMNS';
|
||||
|
||||
/**
|
||||
* @deprecated 22.0.0 this is an internal event
|
||||
*/
|
||||
public const CHECK_MISSING_COLUMNS_EVENT = self::class . '::CHECK_MISSING_COLUMNS';
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in a new issue