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