Skip to content

Commit

Permalink
Rename columns for column. (#272)
Browse files Browse the repository at this point in the history
  • Loading branch information
terabytesoftw committed Apr 7, 2023
1 parent e175847 commit 1f0091a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Schema.php
Expand Up @@ -773,7 +773,7 @@ protected function findColumns(TableSchemaInterface $table): bool
/** @psalm-var ColumnSchema $loadColumnSchema */
$loadColumnSchema = $this->loadColumnSchema($column);

$table->columns($loadColumnSchema->getName(), $loadColumnSchema);
$table->column($loadColumnSchema->getName(), $loadColumnSchema);

/** @psalm-var mixed $defaultValue */
$defaultValue = $loadColumnSchema->getDefaultValue();
Expand Down

0 comments on commit 1f0091a

Please sign in to comment.