Пример #1
0
 /**
  * @inheritDoc
  */
 public function toggleBreakpoint(MigrationInterface $migration)
 {
     $this->query(sprintf('UPDATE %s SET breakpoint = CASE breakpoint WHEN 1 THEN 0 ELSE 1 END WHERE version = \'%s\';', $this->getSchemaTableName(), $migration->getversion()));
     return $this;
 }