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

fix: migration broke in laravel v11.15 #224

Merged
merged 5 commits into from
Aug 7, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
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
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# v8.2.0 (2024-08-05)

> [!NOTE] Minimum supported Laravel version is bumped to 11.15.0 for #224.

Fixed
- Fixed an issue where Schema changes were applied twice. (#224)

# v8.1.3 (2024-06-24)

Fixed
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"php": "^8.2",
"ext-grpc": "*",
"ext-json": "*",
"laravel/framework": "^11",
"laravel/framework": "^11.15.0",
"google/cloud-spanner": "^1.58.4",
"grpc/grpc": "^1.42",
"symfony/cache": "~7",
Expand Down
15 changes: 11 additions & 4 deletions src/Schema/Grammar.php
Original file line number Diff line number Diff line change
Expand Up @@ -131,14 +131,19 @@ public function compileAdd(Blueprint $blueprint, Fluent $command)
* @param Blueprint $blueprint
* @param Fluent<string, mixed> $command
* @param Connection $connection
* @return string[]
* @return list<string>|string
*/
public function compileChange(Blueprint $blueprint, Fluent $command, Connection $connection)
{
return $this->prefixArray(
'alter table '.$this->wrapTable($blueprint).' alter column',
$this->getChangedColumns($blueprint)
$column = $command->column;

$sql = sprintf('alter table %s alter column %s %s',
$this->wrapTable($blueprint),
$this->wrap($column),
$this->getType($column),
);

return $this->addModifiers($sql, $blueprint, $column);
}

/**
Expand Down Expand Up @@ -830,6 +835,8 @@ protected function formatTimestampValue(Fluent $column, mixed $value): string
/**
* Compile the blueprint's column definitions.
*
* @deprecated Not used anymore. Will be deleted in 9.x.
*
* @param Blueprint $blueprint
* @return array<int, string>
*/
Expand Down
Loading