|
@@ -23,10 +23,10 @@ |
|
|
block discarded – undo |
|
23
|
23
|
$statement = []; |
|
24
|
24
|
|
|
25
|
25
|
$statement[] = 'FOREIGN KEY'; |
|
26
|
|
- $statement[] = '(' . $this->table->getDriver()->identifier($this->column) . ')'; |
|
|
26
|
+ $statement[] = '('.$this->table->getDriver()->identifier($this->column).')'; |
|
27
|
27
|
|
|
28
|
|
- $statement[] = 'REFERENCES ' . $this->table->getDriver()->identifier($this->foreignTable); |
|
29
|
|
- $statement[] = '(' . $this->table->getDriver()->identifier($this->foreignKey) . ')'; |
|
|
28
|
+ $statement[] = 'REFERENCES '.$this->table->getDriver()->identifier($this->foreignTable); |
|
|
29
|
+ $statement[] = '('.$this->table->getDriver()->identifier($this->foreignKey).')'; |
|
30
|
30
|
|
|
31
|
31
|
$statement[] = "ON DELETE {$this->deleteRule}"; |
|
32
|
32
|
$statement[] = "ON UPDATE {$this->updateRule}"; |
Please login to merge, or discard this patch.