2017-10-19 11:37:24 -04:00
|
|
|
defmodule Pleroma.Repo.Migrations.CreatePasswordResetTokens do
|
|
|
|
use Ecto.Migration
|
|
|
|
|
|
|
|
def change do
|
2019-06-30 21:08:07 -04:00
|
|
|
create_if_not_exists table(:password_reset_tokens) do
|
2017-10-19 11:37:24 -04:00
|
|
|
add :token, :string
|
|
|
|
add :user_id, references(:users)
|
|
|
|
add :used, :boolean, default: false
|
|
|
|
|
|
|
|
timestamps()
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|