Grammar/Vocabulary fixes
Signed-off-by: Chris Berthe <chrisberthe@gmail.com>
This commit is contained in:
@@ -37,7 +37,7 @@ class MySQL extends Grammar {
|
||||
}
|
||||
|
||||
/**
|
||||
* Geenrate the SQL statements for a table modification command.
|
||||
* Generate the SQL statements for a table modification command.
|
||||
*
|
||||
* @param Table $table
|
||||
* @param Fluent $command
|
||||
@@ -47,7 +47,7 @@ class MySQL extends Grammar {
|
||||
{
|
||||
$columns = $this->columns($table);
|
||||
|
||||
// Once we the array of column definitions, we need to add "add" to the
|
||||
// Once we have the array of column definitions, we need to add "add" to the
|
||||
// front of each definition, then we'll concatenate the definitions
|
||||
// using commas like normal and generate the SQL.
|
||||
$columns = implode(', ', array_map(function($column)
|
||||
@@ -260,7 +260,7 @@ class MySQL extends Grammar {
|
||||
}
|
||||
|
||||
/**
|
||||
* Generate the SQL statement for a drop unqique key command.
|
||||
* Generate the SQL statement for a drop unique key command.
|
||||
*
|
||||
* @param Table $table
|
||||
* @param Fluent $command
|
||||
@@ -284,7 +284,7 @@ class MySQL extends Grammar {
|
||||
}
|
||||
|
||||
/**
|
||||
* Generate the SQL statement for a drop unqique key command.
|
||||
* Generate the SQL statement for a drop unique key command.
|
||||
*
|
||||
* @param Table $table
|
||||
* @param Fluent $command
|
||||
@@ -353,7 +353,7 @@ class MySQL extends Grammar {
|
||||
}
|
||||
|
||||
/**
|
||||
* Generate the data-type definintion for a decimal.
|
||||
* Generate the data-type definition for a decimal.
|
||||
*
|
||||
* @param Fluent $column
|
||||
* @return string
|
||||
|
||||
Reference in New Issue
Block a user