pleroma/priv/repo/migrations/20220302013920_add_language_to_users.exs
ilja 3a13f91fff Adapt some migrations so they can be rolled back
This is useful for people who want to migrate back to Pleroma.
It's also added in the docs, but also noted that this is barely tested and to be used at their own risk.
2023-06-09 22:02:26 +02:00

16 lines
278 B
Elixir

defmodule Pleroma.Repo.Migrations.AddLanguageToUsers do
use Ecto.Migration
def up do
alter table(:users) do
add_if_not_exists(:language, :string)
end
end
def down do
alter table(:users) do
remove_if_exists(:language, :string)
end
end
end