Skip to content

Commit

Permalink
Add collation to reflected schema values.
Browse files Browse the repository at this point in the history
Refs #4263
  • Loading branch information
markstory committed Aug 17, 2014
1 parent 623fe8b commit 7f2d356
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Database/Schema/MysqlSchema.php
Expand Up @@ -55,7 +55,8 @@ public function describeOptionsSql($name, $config) {
*/
public function convertOptions(Table $table, $row) {
$table->options([
'engine' => $row['Engine']
'engine' => $row['Engine'],
'collation' => $row['Collation'],
]);
}

Expand Down

0 comments on commit 7f2d356

Please sign in to comment.