Laravel 3 Schema Table Column Collation
问题 I'm learning laravel, and I'm stuck on a simple process. I want the tables to be generated as UTF-8 but varchar and text fields are like latin-1. Schema section in guide did not help at all. I found this GitHub entry but it does not work neither (throws me errors). I have a schema like this: <?php class Create_Authors_Table { /** * Make changes to the database. * * @return void */ public function up() { Schema::create('authors',function($table){ //$table->charset('utf8'); //does not work //