File tree Expand file tree Collapse file tree 5 files changed +13
-0
lines changed Expand file tree Collapse file tree 5 files changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,15 @@ awareness about deprecated code.
88
99# Upgrade to 4.4
1010
11+ ## Deprecated extension of schema classes
12+
13+ Extending the following classes has been deprecated. Use them directly.
14+
15+ - ` Schema `
16+ - ` Sequence `
17+ - ` Table `
18+ - ` View `
19+
1120## Deprecated features of ` Table::getIndexes() ` , ` Table::getUniqueConstraints() ` and ` Table::getForeignKeys() `
1221
1322Using the keys of the arrays returned by ` Table::getIndexes() ` , ` Table::getUniqueConstraints() ` and
Original file line number Diff line number Diff line change 5252 * execute them. Only the queries for the currently connected database are
5353 * executed.
5454 *
55+ * @final
5556 * @extends AbstractAsset<UnqualifiedName>
5657 */
5758class Schema extends AbstractAsset
Original file line number Diff line number Diff line change 1515/**
1616 * Sequence structure.
1717 *
18+ * @final
1819 * @extends AbstractNamedObject<OptionallyQualifiedName>
1920 */
2021class Sequence extends AbstractNamedObject
Original file line number Diff line number Diff line change 3838/**
3939 * Object Representation of a table.
4040 *
41+ * @final
4142 * @extends AbstractNamedObject<OptionallyQualifiedName>
4243 */
4344class Table extends AbstractNamedObject
Original file line number Diff line number Diff line change 1111/**
1212 * Representation of a Database View.
1313 *
14+ * @final
1415 * @extends AbstractNamedObject<OptionallyQualifiedName>
1516 */
1617class View extends AbstractNamedObject
You can’t perform that action at this time.
0 commit comments