aboutsummaryrefslogtreecommitdiff
path: root/priv/repo
diff options
context:
space:
mode:
authorHaelwenn <contact+git.pleroma.social@hacktivis.me>2022-03-20 18:14:37 +0000
committerHaelwenn <contact+git.pleroma.social@hacktivis.me>2022-03-20 18:14:37 +0000
commitd7c53da77adfcfc5cf1fd83dd0671b9de8147e15 (patch)
tree6887af6027159e4bb5b2bc829263cff47db825d9 /priv/repo
parente63d49d23811ae7a5994b7a8ebaae744988193a1 (diff)
parent79ccb6b9998ffffa32ba059c8e97f0f604db81f6 (diff)
downloadpleroma-d7c53da77adfcfc5cf1fd83dd0671b9de8147e15.tar.gz
Merge branch 'from/upstream-develop/tusooa/translate-pages' into 'develop'
Translate backend-rendered pages See merge request pleroma/pleroma!3634
Diffstat (limited to 'priv/repo')
-rw-r--r--priv/repo/migrations/20220302013920_add_language_to_users.exs9
1 files changed, 9 insertions, 0 deletions
diff --git a/priv/repo/migrations/20220302013920_add_language_to_users.exs b/priv/repo/migrations/20220302013920_add_language_to_users.exs
new file mode 100644
index 000000000..7a63c36aa
--- /dev/null
+++ b/priv/repo/migrations/20220302013920_add_language_to_users.exs
@@ -0,0 +1,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