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 CreateUsersTable extends Migration
|
||||
public function up()
|
||||
{
|
||||
Schema::create('users', function (Blueprint $table) {
|
||||
$table->engine = 'InnoDB';
|
||||
|
||||
$table->increments('id');
|
||||
$table->string('username');
|
||||
$table->string('password');
|
||||
|
||||
Reference in New Issue
Block a user