-- =============================================
-- FIX OPERATIONS TABLE - Missing Column
-- Run this in phpMyAdmin to fix the Mission Assignment error
-- =============================================

-- Add missing min_level column to operations table
ALTER TABLE operations 
ADD COLUMN min_level INT DEFAULT 1;

-- Verify the column is added
SHOW COLUMNS FROM operations LIKE 'min_level';
