We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ca9f2f commit 411dc3eCopy full SHA for 411dc3e
src/Schema/Builder.php
@@ -17,6 +17,10 @@ class Builder extends MySqlBuilder
17
*/
18
protected function createBlueprint($table, Closure $callback = null)
19
{
20
- return new Blueprint($table, $callback);
+ $prefix = $this->connection->getConfig('prefix_indexes')
21
+ ? $this->connection->getConfig('prefix')
22
+ : '';
23
+
24
+ return new Blueprint($table, $callback, $prefix);
25
}
26
0 commit comments