Skip to content

Commit

Permalink
Update src/Schema/SQLiteSchemaManager.php
Browse files Browse the repository at this point in the history
  • Loading branch information
Tofandel committed Feb 6, 2024
1 parent 5678b6d commit 15d34b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Schema/SQLiteSchemaManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public function dropForeignKey(string $name, string $table): void

$foreignKey = $table->getForeignKey($name);

$this->alterTable(new TableDiff($table, modifiedForeignKeys: [$foreignKey]));
$this->alterTable(new TableDiff($table, droppedForeignKeys: [$foreignKey]));

Check warning on line 72 in src/Schema/SQLiteSchemaManager.php

View check run for this annotation

Codecov / codecov/patch

src/Schema/SQLiteSchemaManager.php#L72

Added line #L72 was not covered by tests
}

/**
Expand Down

0 comments on commit 15d34b3

Please sign in to comment.