Removed deprecation leftovers

1. `SqliteSchemaManager#_getPortableTableColumnList()` was mistakenly marked `@deprecated` instead of `#_getPortableTableIndexDefinition()` in #3565.
2. `OracleSchemaManager#_getPortableDatabaseDefinition()` was mistakenly marked `@deprecated` instead of `#_getPortableFunctionDefinition()` in #3565.
3. The deprecation message in the `OracleSchemaManager#createDatabase()` description is irrelevant as of #3565.
parent acc4686b
...@@ -267,8 +267,6 @@ class OracleSchemaManager extends AbstractSchemaManager ...@@ -267,8 +267,6 @@ class OracleSchemaManager extends AbstractSchemaManager
/** /**
* {@inheritdoc} * {@inheritdoc}
*
* @deprecated
*/ */
protected function _getPortableDatabaseDefinition(array $database) : string protected function _getPortableDatabaseDefinition(array $database) : string
{ {
...@@ -279,8 +277,6 @@ class OracleSchemaManager extends AbstractSchemaManager ...@@ -279,8 +277,6 @@ class OracleSchemaManager extends AbstractSchemaManager
/** /**
* {@inheritdoc} * {@inheritdoc}
*
* Calling this method without an argument or by passing NULL is deprecated.
*/ */
public function createDatabase(string $database) : void public function createDatabase(string $database) : void
{ {
......
...@@ -238,8 +238,6 @@ class SqliteSchemaManager extends AbstractSchemaManager ...@@ -238,8 +238,6 @@ class SqliteSchemaManager extends AbstractSchemaManager
/** /**
* {@inheritdoc} * {@inheritdoc}
*
* @deprecated
*/ */
protected function _getPortableTableColumnList(string $table, string $database, array $tableColumns) : array protected function _getPortableTableColumnList(string $table, string $database, array $tableColumns) : array
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment