Browse Source

Apply prefix to foreign key's "on" attribute, too.

Franz Liedke 12 years ago
parent
commit
7ead1796d0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      laravel/database/schema/grammars/grammar.php

+ 1 - 1
laravel/database/schema/grammars/grammar.php

@@ -21,7 +21,7 @@ abstract class Grammar extends \Laravel\Database\Grammar {
 		// command is being executed and the referenced table are wrapped.
 		// command is being executed and the referenced table are wrapped.
 		$table = $this->wrap($table);
 		$table = $this->wrap($table);
 
 
-		$on = $this->wrap($command->on);
+		$on = $this->wrap_table($command->on);
 
 
 		// Next we need to columnize both the command table's columns as well as
 		// Next we need to columnize both the command table's columns as well as
 		// the columns referenced by the foreign key. We'll cast the referenced
 		// the columns referenced by the foreign key. We'll cast the referenced