You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lemmy/migrations/2023-06-06-104440_index_pos.../down.sql

8 lines
125 B
SQL

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