Skip to content

Commit

Permalink
fix on getForeignKeys
Browse files Browse the repository at this point in the history
  • Loading branch information
hafezdivandari committed Dec 13, 2023
1 parent 2c57b6b commit bb9406e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Illuminate/Database/Schema/PostgresBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ public function getIndexes($table)
*/
public function getForeignKeys($table)
{
[, $schema, $table] = $this->parseSchemaAndTable($table);
[$schema, $table] = $this->parseSchemaAndTable($table);

$table = $this->connection->getTablePrefix().$table;

Expand Down

0 comments on commit bb9406e

Please sign in to comment.