summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20210222184616_change_hashtags_name_to_text.exs
diff options
context:
space:
mode:
Diffstat (limited to 'priv/repo/migrations/20210222184616_change_hashtags_name_to_text.exs')
-rw-r--r--priv/repo/migrations/20210222184616_change_hashtags_name_to_text.exs2
1 files changed, 1 insertions, 1 deletions
diff --git a/priv/repo/migrations/20210222184616_change_hashtags_name_to_text.exs b/priv/repo/migrations/20210222184616_change_hashtags_name_to_text.exs
index 8940b6ca3..268e0d2ac 100644
--- a/priv/repo/migrations/20210222184616_change_hashtags_name_to_text.exs
+++ b/priv/repo/migrations/20210222184616_change_hashtags_name_to_text.exs
@@ -9,7 +9,7 @@ defmodule Pleroma.Repo.Migrations.ChangeHashtagsNameToText do
def down do
alter table(:hashtags) do
- modify(:name, :citext)
+ modify(:name, :text)
end
end
end