8 lines
272 B
SQL
8 lines
272 B
SQL
-- Add notes column to household_lists table
|
|
-- This allows users to add custom notes/descriptions to list items
|
|
|
|
ALTER TABLE household_lists
|
|
ADD COLUMN IF NOT EXISTS notes TEXT;
|
|
|
|
COMMENT ON COLUMN household_lists.notes IS 'Optional user notes/description for the item';
|