diff options
author | marcin mikołajczak <git@mkljczk.pl> | 2022-01-23 08:42:18 +0100 |
---|---|---|
committer | marcin mikołajczak <git@mkljczk.pl> | 2022-01-23 09:13:33 +0100 |
commit | 0266bc3c96c30cfee929c55babdca679ca17a479 (patch) | |
tree | ea2faa779f4dde27371cdac662d053c4ff60c1ef /priv | |
parent | aaa9314f4cf53b3510946234ad7f361257943af0 (diff) | |
download | pleroma-0266bc3c96c30cfee929c55babdca679ca17a479.tar.gz pleroma-0266bc3c96c30cfee929c55babdca679ca17a479.zip |
Birthdays: hide_birthday -> show_birthday
Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
Diffstat (limited to 'priv')
-rw-r--r-- | priv/repo/migrations/29220116183110_add_birth_date_to_users.exs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/priv/repo/migrations/29220116183110_add_birth_date_to_users.exs b/priv/repo/migrations/29220116183110_add_birth_date_to_users.exs index be0ed2bbc..57fedaee2 100644 --- a/priv/repo/migrations/29220116183110_add_birth_date_to_users.exs +++ b/priv/repo/migrations/29220116183110_add_birth_date_to_users.exs @@ -4,7 +4,7 @@ defmodule Pleroma.Repo.Migrations.AddBirthDateToUsers do def change do alter table(:users) do add_if_not_exists(:birthday, :date) - add_if_not_exists(:hide_birthday, :boolean, default: false, null: false) + add_if_not_exists(:show_birthday, :boolean, default: false, null: false) end end end |