mirror of
https://github.com/snipe/snipe-it.git
synced 2025-02-21 03:15:45 -08:00
Removed extra paramater from hasTable
Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
parent
4c3f59c5fd
commit
2a6b59f0f8
|
@ -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');
|
||||
|
|
Loading…
Reference in a new issue