6 lines
279 B
MySQL
6 lines
279 B
MySQL
|
|
-- 069_conversation_category.sql
|
||
|
|
-- Add category column for conversation classification
|
||
|
|
|
||
|
|
ALTER TABLE conversations ADD COLUMN category VARCHAR(50) DEFAULT 'General';
|
||
|
|
COMMENT ON COLUMN conversations.category IS 'Conversation Category: General, Support, Sales, Internal, Meeting';
|