for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Cycle\Migrations\Operation\Column;
use Cycle\Migrations\CapsuleInterface;
use Cycle\Migrations\Exception\Operation\ColumnException;
use Cycle\Migrations\Operation\AbstractOperation;
final class Rename extends AbstractOperation
{
public function __construct(string $table, private string $name, private string $newName)
parent::__construct($table);
}
/**
* {@inheritdoc}
*/
public function execute(CapsuleInterface $capsule): void
$schema = $capsule->getSchema($this->getTable());
if (!$schema->hasColumn($this->name)) {
throw new ColumnException(
"Unable to rename column '{$schema->getName()}'.'{$this->name}', column does not exists"
);
if ($schema->hasColumn($this->newName)) {
sprintf(
"Unable to rename column '%s'.'%s', column '%s' already exists",
$schema->getName(),
$this->name,
$this->newName
)
//Declaring column
$schema->renameColumn($this->name, $this->newName);