Skip to content

Commit

Permalink
Merge branch 'master' into fix-cte
Browse files Browse the repository at this point in the history
  • Loading branch information
Tigrov committed Oct 14, 2023
2 parents d362637 + 071f46a commit 93ba140
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
- Bug #756: Fix `Quoter::getTableNameParts()` for cases when different quotes for tables and columns (@Tigrov)
- Bug #756: Fix `Quoter::quoteTableName()` for sub-query with alias (@Tigrov)
- Bug #761: Quote aliases of CTE in `WITH` queries (@Tigrov)
- Chg #765: Deprecate `SchemaInterface::TYPE_JSONB` (@Tigrov)

## 1.1.1 August 16, 2023

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"spatie/phpunit-watcher": "^1.23",
"vimeo/psalm": "^4.30|^5.12",
"yiisoft/aliases": "^3.0",
"yiisoft/cache-file": "^2.0",
"yiisoft/cache-file": "^3.1",
"yiisoft/di": "^1.0",
"yiisoft/event-dispatcher": "^1.0",
"yiisoft/json": "^1.0",
Expand Down
2 changes: 2 additions & 0 deletions src/Schema/SchemaInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,8 @@ interface SchemaInterface extends ConstraintSchemaInterface
public const TYPE_JSON = 'json';
/**
* Define the abstract column type as `jsonb`.
*
* @deprecated will be removed in version 2.0.0. Use `SchemaInterface::TYPE_JSON` instead.
*/
public const TYPE_JSONB = 'jsonb';

Expand Down

0 comments on commit 93ba140

Please sign in to comment.