14 lines
290 B
Elixir
14 lines
290 B
Elixir
|
defmodule Pleroma.Repo.Migrations.CreatePasswordResetTokens do
|
||
|
use Ecto.Migration
|
||
|
|
||
|
def change do
|
||
|
create table(:password_reset_tokens) do
|
||
|
add :token, :string
|
||
|
add :user_id, references(:users)
|
||
|
add :used, :boolean, default: false
|
||
|
|
||
|
timestamps()
|
||
|
end
|
||
|
end
|
||
|
end
|