X-Git-Url: http://these/git/?a=blobdiff_plain;f=migrations%2F2023-06-06-104440_index_post_url%2Fdown.sql;h=ccc9e938f4d5b19a090b70f82fb8a971137d6bdc;hb=8cb5939f5048c3eab293884923d4c3d5fcc08e2f;hp=5a60b131bfc49494bfbfe6cb49f34c1c9b56a569;hpb=4e5798852f583a68d123a9c49ae0ef59ec9ffc76;p=lemmy.git diff --git a/migrations/2023-06-06-104440_index_post_url/down.sql b/migrations/2023-06-06-104440_index_post_url/down.sql index 5a60b131..ccc9e938 100644 --- a/migrations/2023-06-06-104440_index_post_url/down.sql +++ b/migrations/2023-06-06-104440_index_post_url/down.sql @@ -1 +1,5 @@ +-- Change back the column type +alter table post alter column url type text; + +-- Drop the index drop index idx_post_url;