37684-vm/db/migrations/04_add_role_column.sql
2026-03-01 00:04:22 +00:00

3 lines
167 B
SQL

-- 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;