6 lines
180 B
SQL
6 lines
180 B
SQL
-- Add is_pinned column to grocery_lists table
|
|
ALTER TABLE grocery_lists ADD COLUMN IF NOT EXISTS is_pinned BOOLEAN DEFAULT FALSE;
|
|
|
|
-- Verify the column was added
|
|
\d grocery_lists
|