2022-02-25 22:11:42 -08:00
|
|
|
# Pleroma: A lightweight social networking server
|
|
|
|
# Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
|
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2022-01-23 00:54:24 -08:00
|
|
|
defmodule Pleroma.Repo.Migrations.AddBirthdayToUsers do
|
2022-01-18 05:57:48 -08:00
|
|
|
use Ecto.Migration
|
|
|
|
|
|
|
|
def change do
|
|
|
|
alter table(:users) do
|
2022-01-22 11:21:55 -08:00
|
|
|
add_if_not_exists(:birthday, :date)
|
2022-01-22 23:42:18 -08:00
|
|
|
add_if_not_exists(:show_birthday, :boolean, default: false, null: false)
|
2022-01-18 05:57:48 -08:00
|
|
|
end
|
2022-01-23 00:54:24 -08:00
|
|
|
|
|
|
|
create_if_not_exists(index(:users, [:show_birthday]))
|
2022-01-18 05:57:48 -08:00
|
|
|
end
|
|
|
|
end
|