Fixes 768. php artisan migrate will work regardless of mysql version or default_database_engine.
This commit is contained in:
@@ -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');
|
||||
|
||||
Reference in New Issue
Block a user