2022-02-26 06:11:42 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2023-01-01 11:11:47 +00:00
|
|
|
# Copyright © 2017-2023 Pleroma Authors <https://pleroma.social/>
|
2022-02-26 06:11:42 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
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
|