Fixes 768. php artisan migrate will work regardless of mysql version or default_database_engine.

This commit is contained in:
Chase Coney
2015-06-30 09:53:29 -05:00
parent 793564e0c0
commit 04161678b6
13 changed files with 26 additions and 0 deletions
@@ -21,6 +21,8 @@ class CreateComponentsTable extends Migration
public function up()
{
Schema::create('components', function (Blueprint $table) {
$table->engine = 'InnoDB';
$table->increments('id');
$table->string('name');
$table->text('description');