INFO Running migrations. 0001_01_01_000000_create_users_table 296.93ms DONE 0001_01_01_000001_create_cache_table 32.00ms DONE 0001_01_01_000002_create_jobs_table 70.94ms DONE 2019_12_14_000001_create_personal_access_tokens_table 43.66ms DONE 2024_01_02_000001_create_brand_profiles_table 265.58ms DONE 2024_01_02_000002_create_creator_profiles_table 252.23ms DONE 2024_01_02_000003_create_campaigns_table 104.52ms DONE 2024_01_02_000004_create_syncs_table 256.11ms DONE 2024_01_02_000005_create_transactions_table 102.85ms DONE 2024_01_02_000006_create_chats_table 221.43ms DONE 2024_01_02_000007_create_notifications_table 83.19ms DONE 2024_01_02_000008_create_admin_tables 89.33ms DONE 2024_01_02_000009_create_supporting_tables 188.05ms DONE 2024_01_02_000010_create_feed_and_config_tables 182.54ms DONE 2026_01_08_064745_create_archived_documents_table 213.54ms DONE 2026_01_08_082834_create_settings_table 23.21ms DONE 2026_01_08_104923_create_admin_notifications_table 13.02ms DONE 2026_01_08_200000_add_missing_admin_columns 247.46ms DONE 2026_01_09_000001_fix_personal_access_tokens_uuid 45.45ms DONE 2026_01_09_000002_add_admin_id_to_refresh_tokens 152.48ms DONE 2026_01_09_000003_add_boost_package_columns 87.32ms DONE 2026_01_09_000003_create_reviews_table 68.63ms DONE 2026_01_09_000004_create_reports_table 71.75ms DONE 2026_01_09_000004_update_role_configs_table 204.73ms DONE 2026_01_09_000005_change_role_configs_id_string 46.10ms DONE 2026_01_09_121500_make_user_phone_nullable 70.68ms DONE 2026_01_09_140000_update_banners_table 87.78ms DONE 2026_01_09_182524_create_webhook_logs_table 15.89ms DONE 2026_01_11_200000_create_waitlist_entries_table 199.04ms DONE 2026_01_12_162708_add_referral_columns_to_waitlist_entries_table 221.84ms DONE 2026_01_13_091410_create_blogs_table 8.33ms FAIL Illuminate\Database\QueryException SQLSTATE[42S01]: Base table or view already exists: 1050 Table 'blogs' already exists (Connection: mysql, Host: 127.0.0.1, Port: 3306, Database: altibix_im, SQL: create table `blogs` (`id` bigint unsigned not null auto_increment primary key, `title` varchar(255) not null, `slug` varchar(255) not null, `category` varchar(100) not null, `excerpt` text null, `content` longtext not null, `banner_image` varchar(255) null, `meta_title` varchar(60) null, `meta_description` varchar(160) null, `meta_keywords` text null, `author_id` bigint unsigned null, `status` enum('draft', 'published', 'archived') not null default 'draft', `published_at` timestamp null, `views_count` int not null default '0', `reading_time` int null, `featured` tinyint(1) not null default '0', `created_at` timestamp null, `updated_at` timestamp null) default character set utf8mb4 collate 'utf8mb4_unicode_ci' engine = InnoDB) at vendor\laravel\framework\src\Illuminate\Database\Connection.php:831 827▕ $exceptionType = $this->isUniqueConstraintError($e) 828▕ ? UniqueConstraintViolationException::class 829▕ : QueryException::class; 830▕ ➜ 831▕ throw new $exceptionType( 832▕ $this->getNameWithReadWriteType(), 833▕ $query, 834▕ $this->prepareBindings($bindings), 835▕ $e, 1 vendor\laravel\framework\src\Illuminate\Database\Connection.php:577 PDOException::("SQLSTATE[42S01]: Base table or view already exists: 1050 Table 'blogs' already exists") 2 vendor\laravel\framework\src\Illuminate\Database\Connection.php:577 PDOStatement::execute()