Example #1
0
 /**
  * {@inheritdoc}
  */
 public function addSchema(Schema $schema)
 {
     $name = $schema->getName();
     if (!in_array($name, $this->tables)) {
         $this->tables[] = $name;
     }
     $this->schemas[$name] = $schema;
 }
Example #2
0
 /**
  * {@inheritdoc}
  */
 public function addSchema(Schema $schema)
 {
     $this->schemas[$schema->getName()] = $schema;
 }