mirror of
https://github.com/chaitin/MonkeyCode.git
synced 2026-02-02 23:03:57 +08:00
3 lines
135 B
MySQL
3 lines
135 B
MySQL
|
|
-- Alter workspace_files table to change path column from VARCHAR(255) to TEXT
|
||
|
|
ALTER TABLE workspace_files
|
||
|
|
ALTER COLUMN path TYPE TEXT;
|