37048-vm/db/migrations/006_add_is_admin_to_users.sql
Flatlogic Bot 20dd5c8f61 3 ver
2025-12-03 22:04:46 +00:00

3 lines
163 B
SQL

-- Add is_admin flag to users table to differentiate admins from regular users
ALTER TABLE `users` ADD `is_admin` BOOLEAN NOT NULL DEFAULT FALSE AFTER `password`;