6 lines
238 B
MySQL
6 lines
238 B
MySQL
|
|
-- Add optional note column to domain security levels
|
||
|
|
-- Allows users to add a free-text note when setting a security level
|
||
|
|
|
||
|
|
ALTER TABLE `helpdesk_domain_security_levels`
|
||
|
|
ADD COLUMN `note` TEXT NULL DEFAULT NULL AFTER `security_level`;
|