Files
MonkeyCode/backend/migration/000019_alter_workspace_files_path_column.up.sql

3 lines
135 B
SQL

-- Alter workspace_files table to change path column from VARCHAR(255) to TEXT
ALTER TABLE workspace_files
ALTER COLUMN path TYPE TEXT;