38682-vm/db/migrations/021_add_is_ratable_to_users.sql
2026-02-23 17:32:54 +00:00

6 lines
208 B
SQL

-- Migration: Add is_ratable to users table
-- Description: Allows choosing specific staff members to be rated by customers.
-- Date: 2026-02-23
ALTER TABLE users ADD COLUMN is_ratable TINYINT(1) DEFAULT 0;