summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20201221202251_create_hashtags.exs
diff options
context:
space:
mode:
Diffstat (limited to 'priv/repo/migrations/20201221202251_create_hashtags.exs')
-rw-r--r--priv/repo/migrations/20201221202251_create_hashtags.exs2
1 files changed, 1 insertions, 1 deletions
diff --git a/priv/repo/migrations/20201221202251_create_hashtags.exs b/priv/repo/migrations/20201221202251_create_hashtags.exs
index 8d2e9ae66..d285f2524 100644
--- a/priv/repo/migrations/20201221202251_create_hashtags.exs
+++ b/priv/repo/migrations/20201221202251_create_hashtags.exs
@@ -3,7 +3,7 @@ defmodule Pleroma.Repo.Migrations.CreateHashtags do
def change do
create_if_not_exists table(:hashtags) do
- add(:name, :citext, null: false)
+ add(:name, :text, null: false)
timestamps()
end