info('Removing all demo data...'); // Disable foreign key checks for all supported DB drivers Schema::disableForeignKeyConstraints(); // Truncate pivot tables DB::table('project_smartdok_profile')->truncate(); DB::table('department_project')->truncate(); // Truncate core tables WorkHour::truncate(); Project::truncate(); SmartdokProfile::truncate(); Department::truncate(); // Re-enable foreign key checks Schema::enableForeignKeyConstraints(); $this->info('All demo data removed successfully.'); return 0; } }