pleroma/priv/repo/migrations/20171019141706_create_password_reset_tokens.exs

18 lines
466 B
Elixir
Raw Permalink Normal View History

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
2017-10-19 08:37:24 -07:00
defmodule Pleroma.Repo.Migrations.CreatePasswordResetTokens do
use Ecto.Migration
def change do
2019-06-30 18:08:07 -07:00
create_if_not_exists table(:password_reset_tokens) do
2019-10-08 05:16:39 -07:00
add(:token, :string)
add(:user_id, references(:users))
add(:used, :boolean, default: false)
2017-10-19 08:37:24 -07:00
timestamps()
end
end
end