mirror of
https://github.com/chaitin/MonkeyCode.git
synced 2026-02-02 06:43:23 +08:00
4 lines
226 B
SQL
4 lines
226 B
SQL
-- Alter workspace_files table to change path column from TEXT to VARCHAR(255)
|
|
-- Note: This operation may fail if any existing path values exceed 255 characters
|
|
ALTER TABLE workspace_files
|
|
ALTER COLUMN path TYPE VARCHAR(255); |