mirror of
https://github.com/System-End/scraps.git
synced 2026-04-19 23:22:54 +00:00
4 lines
236 B
SQL
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;
|