-
-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow
ColumnInterface
as column type (#766)
* Allow `ColumnInterface` as column type * Update tests * Fix psalm issue * Rename variable in test `$type` => `$columnType` * Move psalm type declaration to method docs * Add line to CHANGELOG.md [skip ci] * Restart tests * Apply rector suggestions * Update UPGRADE.md by @vjik --------- Co-authored-by: Sergei Predvoditelev <[email protected]>
- Loading branch information
Showing
15 changed files
with
78 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,18 @@ | ||
# Upgrading Instructions for Yii Database | ||
|
||
This file contains the upgrade notes for the Yii Database. | ||
These notes highlight changes that could break your application when you upgrade it from one version to another. | ||
Even though we try to ensure backwards compatibility (BC) as much as possible, sometimes | ||
it isn't possible or very complicated to avoid it and still create a good solution to | ||
a problem. While upgrade to Yii 3.0 might require substantial changes to both your application and extensions, | ||
the changes are bearable and require "refactoring", not "rewrite". | ||
All the "Yes, it is" cool stuff, and Yii soul is still in place. | ||
|
||
Changes summary: | ||
|
||
* `Yiisoft\Db\Connection::$charset` has been removed. All supported PDO classes allow you to specify the connection | ||
charset in the DSN. | ||
The following upgrading instructions are cumulative. That is, if you want to upgrade from version A to version C and | ||
there is version B between A and C, you need to following the instructions for both A and B. | ||
|
||
## Upgrade from 1.x to 2.x | ||
|
||
Add `ColumnInterface` support and change type of parameter `$type` from `string` to `ColumnInterface|string` | ||
in `addColumn()` method of your classes that implement the following interfaces: | ||
|
||
- `Yiisoft\Db\Command\CommandInterface`; | ||
- `Yiisoft\Db\QueryBuilder\DDLQueryBuilderInterface`; | ||
|
||
… or inherit from the following classes: | ||
|
||
- `Yiisoft\Db\Command\AbstractCommand`; | ||
- `Yiisoft\Db\QueryBuilder\AbstractDDLQueryBuilder`; | ||
- `Yiisoft\Db\QueryBuilder\AbstractQueryBuilder`. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters