Dropping all tables ........................................... 64.48ms DONE

   INFO  Preparing database.  

  Creating migration table ....................................... 7.60ms DONE

   INFO  Running migrations.  

  0001_01_01_000000_create_users_table .......................... 24.38ms DONE
  0001_01_01_000001_create_cache_table .......................... 14.35ms DONE
  0001_01_01_000002_create_jobs_table ........................... 22.57ms DONE
  2024_01_01_000002_create_businesses_table ..................... 78.32ms DONE
  2024_01_01_000003_create_parties_table ........................ 51.59ms DONE
  2024_01_01_000004_create_inventory_table ..................... 211.28ms DONE
  2024_01_01_000005_create_transactions_table ................... 94.23ms DONE
  2024_01_01_000006_create_invoices_table ...................... 158.35ms DONE
  2024_01_01_000007_create_payroll_table ....................... 120.31ms DONE
  2024_01_01_000008_create_subscriptions_table ................. 171.29ms DONE
  2024_01_01_000009_create_system_tables ....................... 103.84ms FAIL

   Illuminate\Database\QueryException 

  SQLSTATE[42S01]: Base table or view already exists: 1050 Table 'failed_jobs' already exists (Connection: mysql, Host: 127.0.0.1, Port: 3306, Database: swiftbookdb, SQL: create table `failed_jobs` (`id` bigint unsigned not null auto_increment primary key, `uuid` varchar(255) not null, `connection` text not null, `queue` text not null, `payload` longtext not null, `exception` longtext not null, `failed_at` timestamp not null default CURRENT_TIMESTAMP) default character set utf8mb4 collate 'utf8mb4_unicode_ci')

  at vendor/laravel/framework/src/Illuminate/Database/Connection.php:843
    839▕             $exceptionType = ($isUniqueConstraintError = $this->isUniqueConstraintError($e))
    840▕                 ? UniqueConstraintViolationException::class
    841▕                 : QueryException::class;
    842▕ 
  ➜ 843▕             $exception = new $exceptionType(
    844▕                 $this->getNameWithReadWriteType(),
    845▕                 $query,
    846▕                 $this->prepareBindings($bindings),
    847▕                 $e,

      +9 vendor frames 

  10  database/migrations/2024_01_01_000009_create_system_tables.php:78
      Illuminate\Support\Facades\Facade::__callStatic()
      +37 vendor frames 

  48  artisan:16
      Illuminate\Foundation\Application::handleCommand()