10 lines
240 B
MySQL
10 lines
240 B
MySQL
|
|
-- Migration: Remove position field from tasks table
|
||
|
|
-- Date: 2026-02-02
|
||
|
|
--
|
||
|
|
-- This migration removes the position field from tasks table.
|
||
|
|
|
||
|
|
DROP INDEX IF EXISTS idx_tasks_parent_position;
|
||
|
|
|
||
|
|
ALTER TABLE tasks
|
||
|
|
DROP COLUMN IF EXISTS position;
|