1
0
Fork 0
mirror of https://akkoma.dev/AkkomaGang/akkoma.git synced 2025-01-09 08:58:50 +00:00
akkoma/priv/repo/migrations/20220302013920_add_language_to_users.exs

10 lines
183 B
Elixir
Raw Normal View History

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