laravel-doctrine / fluent

Fluent mapping driver for Doctrine2
http://www.laraveldoctrine.org/docs/current/fluent
MIT License
43 stars 22 forks source link

Table options support #35

Closed hiddeco closed 8 years ago

hiddeco commented 8 years ago

Adds support for setting e.g. engine, collate and charset table options.

    $builder->table('foo', function(Table $table) {
        $table->setOptions(['charset' => 'utf8mb']);
    })