|  | @@ -242,8 +242,8 @@  discard block | 
                                                    
                                                        |  |  |  block discarded – undo | 
                                                                                                                                                                                                                    
                                                            | 242 | 242 |          //Requesting thought DatabaseManager | 
                                                                                                            
                                                            | 243 | 243 |          $schema = $this->manager->database($database)->table($table)->getSchema(); | 
                                                                                                            
                                                            | 244 | 244 |   | 
                                                                                                            
                                                            | 245 |  | -        if (isset($this->tables[$schema->getDriver()->getName() . '.' . $table])) { | 
                                                                                                            
                                                            | 246 |  | -            $schema = $this->tables[$schema->getDriver()->getName() . '.' . $table]; | 
                                                                                                            
                                                            |  | 245 | +        if (isset($this->tables[$schema->getDriver()->getName().'.'.$table])) { | 
                                                                                                            
                                                            |  | 246 | +            $schema = $this->tables[$schema->getDriver()->getName().'.'.$table]; | 
                                                                                                            
                                                            | 247 | 247 |   | 
                                                                                                            
                                                            | 248 | 248 |              if ($unique) { | 
                                                                                                            
                                                            | 249 | 249 |                  throw new DoubleReferenceException( | 
                                                                                                                                                        
                                                        |  | @@ -252,7 +252,7 @@  discard block | 
                                                    
                                                        |  |  |  block discarded – undo | 
                                                                                                                                                                                                                    
                                                            | 252 | 252 |              } | 
                                                                                                            
                                                            | 253 | 253 |          } else { | 
                                                                                                            
                                                            | 254 | 254 |   | 
                                                                                                            
                                                            | 255 |  | -            $this->tables[$schema->getDriver()->getName() . '.' . $table] = $schema; | 
                                                                                                            
                                                            |  | 255 | +            $this->tables[$schema->getDriver()->getName().'.'.$table] = $schema; | 
                                                                                                            
                                                            | 256 | 256 |          } | 
                                                                                                            
                                                            | 257 | 257 |   | 
                                                                                                            
                                                            | 258 | 258 |          $schema = clone $schema; | 
                                                                                                                                                        
                                                        |  | @@ -474,10 +474,10 @@  discard block | 
                                                    
                                                        |  |  |  block discarded – undo | 
                                                                                                                                                                                                                    
                                                            | 474 | 474 |          //We have to make sure that local table name is used | 
                                                                                                            
                                                            | 475 | 475 |          $table = substr($schema->getName(), strlen($schema->getPrefix())); | 
                                                                                                            
                                                            | 476 | 476 |   | 
                                                                                                            
                                                            | 477 |  | -        if (empty($this->tables[$schema->getDriver()->getName() . '.' . $table])) { | 
                                                                                                            
                                                            |  | 477 | +        if (empty($this->tables[$schema->getDriver()->getName().'.'.$table])) { | 
                                                                                                            
                                                            | 478 | 478 |              throw new SchemaException("AbstractTable must be requested before pushing back"); | 
                                                                                                            
                                                            | 479 | 479 |          } | 
                                                                                                            
                                                            | 480 | 480 |   | 
                                                                                                            
                                                            | 481 |  | -        $this->tables[$schema->getDriver()->getName() . '.' . $table] = $schema; | 
                                                                                                            
                                                            |  | 481 | +        $this->tables[$schema->getDriver()->getName().'.'.$table] = $schema; | 
                                                                                                            
                                                            | 482 | 482 |      } | 
                                                                                                            
                                                            | 483 | 483 |  } | 
                                                                                                            
                                                            | 484 | 484 | \ No newline at end of file | 
                                                                                                                                                
                                         
                                        
                                            
                                                                                                    Please login to merge, or discard this patch.