Merge branch 'documentation-migration' of akkoma.dev:AkkomaGang/akkoma into documenta...
[akkoma] / priv / repo / migrations / 20220302013920_add_language_to_users.exs
1 defmodule Pleroma.Repo.Migrations.AddLanguageToUsers do
2 use Ecto.Migration
3
4 def change do
5 alter table(:users) do
6 add_if_not_exists(:language, :string)
7 end
8 end
9 end