-- Migration to add role column to users table ALTER TABLE users ADD COLUMN role ENUM('Standard User', 'Super User') DEFAULT 'Standard User' AFTER verification_token;