summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20200505072231_remove_magic_key_field.exs
diff options
context:
space:
mode:
Diffstat (limited to 'priv/repo/migrations/20200505072231_remove_magic_key_field.exs')
-rw-r--r--priv/repo/migrations/20200505072231_remove_magic_key_field.exs9
1 files changed, 9 insertions, 0 deletions
diff --git a/priv/repo/migrations/20200505072231_remove_magic_key_field.exs b/priv/repo/migrations/20200505072231_remove_magic_key_field.exs
new file mode 100644
index 000000000..2635e671b
--- /dev/null
+++ b/priv/repo/migrations/20200505072231_remove_magic_key_field.exs
@@ -0,0 +1,9 @@
+defmodule Pleroma.Repo.Migrations.RemoveMagicKeyField do
+ use Ecto.Migration
+
+ def change do
+ alter table(:users) do
+ remove(:magic_key, :string)
+ end
+ end
+end