summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20201221202252_remove_data_from_hashtags.exs
diff options
context:
space:
mode:
Diffstat (limited to 'priv/repo/migrations/20201221202252_remove_data_from_hashtags.exs')
-rw-r--r--priv/repo/migrations/20201221202252_remove_data_from_hashtags.exs15
1 files changed, 15 insertions, 0 deletions
diff --git a/priv/repo/migrations/20201221202252_remove_data_from_hashtags.exs b/priv/repo/migrations/20201221202252_remove_data_from_hashtags.exs
new file mode 100644
index 000000000..0442c3b87
--- /dev/null
+++ b/priv/repo/migrations/20201221202252_remove_data_from_hashtags.exs
@@ -0,0 +1,15 @@
+defmodule Pleroma.Repo.Migrations.RemoveDataFromHashtags do
+ use Ecto.Migration
+
+ def up do
+ alter table(:hashtags) do
+ remove_if_exists(:data, :map)
+ end
+ end
+
+ def down do
+ alter table(:hashtags) do
+ add_if_not_exists(:data, :map, default: %{})
+ end
+ end
+end