Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for partial indexes and concurrent indexes in postgres #793

Merged
merged 6 commits into from
Dec 27, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Improve API docs
  • Loading branch information
markstory committed Dec 27, 2024
commit 7e03352a8c4f08c8fe56464853a73b222f181e14
7 changes: 7 additions & 0 deletions src/Db/Table.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 35,13 @@
use function Cake\Core\deprecationWarning;

/**
* Migration Table
*
* Table instances allow you to define schema changes
* to be made on a table. You can manipulate columns,
* indexes and foreign keys. You can also manipulate table
* data with row operations.
*
* This object is based loosely on: https://api.rubyonrails.org/classes/ActiveRecord/ConnectionAdapters/Table.html.
*/
class Table
Expand Down
6 changes: 5 additions & 1 deletion src/Table.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 21,13 @@
use Phinx\Util\Literal;

/**
* TODO figure out how to update this for built-in backend.
* Migration Table
*
* This class enhances the phinx provided Table class
* with additional CakePHP related logic.
*
* @method \Migrations\CakeAdapter getAdapter()
* @deprecated 4.6.0 Use \Migrations\Db\Table instead with the builtin backend.
*/
class Table extends BaseTable
{
Expand Down