for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Spiral Framework.
*
* @license MIT
* @author Anton Titov (Wolfy-J)
*/
declare(strict_types=1);
namespace Cycle\Migrations\Operation\Table;
use Cycle\Migrations\CapsuleInterface;
use Cycle\Migrations\Exception\Operation\TableException;
use Cycle\Migrations\Operation\AbstractOperation;
final class PrimaryKeys extends AbstractOperation
{
/** @var array */
private $columns = [];
* @param string $table
* @param array $columns
public function __construct(string $table, array $columns)
parent::__construct($table);
$this->columns = $columns;
}
* {@inheritdoc}
public function execute(CapsuleInterface $capsule): void
$schema = $capsule->getSchema($this->getTable());
$database = $this->database ?? '[default]';
database
Cycle\Migrations\Operation\Table\PrimaryKeys
if ($schema->exists()) {
throw new TableException(
"Unable to set primary keys for table '{$database}'.'{$this->getTable()}', table already exists"
);
$schema->setPrimaryKeys($this->columns);