scraps/backend/drizzle/0007_remove_shipped_at.sql
2026-02-11 16:34:21 -05:00

4 lines
236 B
SQL

-- Remove shipped_at column from projects table
-- Ship dates are now derived from the project_activity table (project_shipped action)
DROP INDEX IF EXISTS idx_projects_shipped_at;
ALTER TABLE projects DROP COLUMN IF EXISTS shipped_at;