summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20220116183110_add_birthday_to_users.exs
blob: 0b22ecc695909fe20a0c8d1149680090dc25f029 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
defmodule Pleroma.Repo.Migrations.AddBirthdayToUsers do
  use Ecto.Migration

  def change do
    alter table(:users) do
      add_if_not_exists(:birthday, :date)
      add_if_not_exists(:show_birthday, :boolean, default: false, null: false)
    end

    create_if_not_exists(index(:users, [:show_birthday]))
  end
end