engine = 'InnoDB';
$table->integer('id', true);
$table->string('name', 191);
$table->string('email', 191)->nullable();
$table->string('phone', 191)->nullable();
$table->string('country', 191)->nullable();
$table->timestamps(6);
$table->softDeletes();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::drop('companies');
}
}