Browse Source

Deprecate the internal IDBConnection event name constants

Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
tags/v22.0.0beta1
Christoph Wurst 3 years ago
parent
commit
3d075c370a
No account linked to committer's email address
1 changed files with 23 additions and 0 deletions
  1. 23
    0
      lib/public/IDBConnection.php

+ 23
- 0
lib/public/IDBConnection.php View File

@@ -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…
Cancel
Save