mirror of
https://git.pleroma.social/sjw/pleroma.git
synced 2025-01-10 11:57:14 +01:00
14 lines
307 B
Elixir
14 lines
307 B
Elixir
defmodule Pleroma.Repo.Migrations.CreatePasswordResetTokens do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
create_if_not_exists table(:password_reset_tokens) do
|
|
add(:token, :string)
|
|
add(:user_id, references(:users))
|
|
add(:used, :boolean, default: false)
|
|
|
|
timestamps()
|
|
end
|
|
end
|
|
end
|