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