2022-01-23 08:54:24 +00:00
|
|
|
defmodule Pleroma.Repo.Migrations.AddBirthdayToUsers do
|
2022-01-18 13:57:48 +00:00
|
|
|
use Ecto.Migration
|
|
|
|
|
|
|
|
def change do
|
|
|
|
alter table(:users) do
|
2022-01-22 19:21:55 +00:00
|
|
|
add_if_not_exists(:birthday, :date)
|
2022-01-23 07:42:18 +00:00
|
|
|
add_if_not_exists(:show_birthday, :boolean, default: false, null: false)
|
2022-01-18 13:57:48 +00:00
|
|
|
end
|
2022-01-23 08:54:24 +00:00
|
|
|
|
|
|
|
create_if_not_exists(index(:users, [:show_birthday]))
|
2022-01-18 13:57:48 +00:00
|
|
|
end
|
|
|
|
end
|