2017-10-19 17:37:24 +02:00
|
|
|
defmodule Pleroma.Repo.Migrations.CreatePasswordResetTokens do
|
|
|
|
use Ecto.Migration
|
|
|
|
|
|
|
|
def change do
|
2019-07-01 03:08:07 +02:00
|
|
|
create_if_not_exists table(:password_reset_tokens) do
|
2019-10-08 14:16:39 +02:00
|
|
|
add(:token, :string)
|
|
|
|
add(:user_id, references(:users))
|
|
|
|
add(:used, :boolean, default: false)
|
2017-10-19 17:37:24 +02:00
|
|
|
|
|
|
|
timestamps()
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|