{
  "stmt": "-- Migration: Add GOD role to users table\n-- This migration adds the GOD role to the role ENUM column in the users table\n-- GOD role has absolute permissions and is hidden from employee lists\n\n-- Update ENUM to include GOD role\nALTER TABLE users MODIFY COLUMN role ENUM('ADMIN', 'MANAGER', 'MAID', 'GOD') DEFAULT 'MANAGER';\n"
}