Removed extra paramater from hasTable

Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
snipe 2021-09-27 09:48:03 -07:00
parent 4c3f59c5fd
commit 2a6b59f0f8

View file

@ -12,7 +12,7 @@ class CreateTempLicensesTable extends Migration
public function up()
{
if (!Schema::hasTable('licenses', 'id')) {
if (!Schema::hasTable('licenses')) {
Schema::create('licenses', function ($table) {
$table->increments('id');
$table->string('name');