logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma git clone https://hacktivis.me/git/pleroma.git

20220302013920_add_language_to_users.exs (183B)


  1. defmodule Pleroma.Repo.Migrations.AddLanguageToUsers do
  2. use Ecto.Migration
  3. def change do
  4. alter table(:users) do
  5. add_if_not_exists(:language, :string)
  6. end
  7. end
  8. end