Browse Source

Add collation to reflected schema values.

Refs #4263
mark_story 11 years ago
parent
commit
7f2d35676c
1 changed files with 2 additions and 1 deletions
  1. 2 1
      src/Database/Schema/MysqlSchema.php

+ 2 - 1
src/Database/Schema/MysqlSchema.php

@@ -55,7 +55,8 @@ class MysqlSchema extends BaseSchema {
  */
 	public function convertOptions(Table $table, $row) {
 		$table->options([
-			'engine' => $row['Engine']
+			'engine' => $row['Engine'],
+			'collation' => $row['Collation'],
 		]);
 	}