mirror of
https://git.pleroma.social/pleroma/pleroma.git
synced 2025-02-21 05:16:25 +00:00
12 lines
319 B
Elixir
12 lines
319 B
Elixir
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
|