]> Untitled Git - lemmy.git/blob - migrations/2023-06-06-104440_index_post_url/down.sql
Revert "Attempt to fix CI building wrong commits (#3830)"
[lemmy.git] / migrations / 2023-06-06-104440_index_post_url / down.sql
1 -- Change back the column type
2 ALTER TABLE post
3     ALTER COLUMN url TYPE text;
4
5 -- Drop the index
6 DROP INDEX idx_post_url;
7