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