lemmy/migrations/2023-06-06-104440_index_post_url/down.sql

8 lines
125 B
MySQL
Raw Normal View History

-- Change back the column type
ALTER TABLE post
ALTER COLUMN url TYPE text;
-- Drop the index
DROP INDEX idx_post_url;