summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20220302013920_add_language_to_users.exs
blob: 7a63c36aad10e2788c3c592dbb3ba02006e5f943 (plain)
1
2
3
4
5
6
7
8
9
defmodule Pleroma.Repo.Migrations.AddLanguageToUsers do
  use Ecto.Migration

  def change do
    alter table(:users) do
      add_if_not_exists(:language, :string)
    end
  end
end