mirror of
https://git.pleroma.social/sjw/pleroma.git
synced 2024-12-29 04:16:05 +01:00
14 lines
304 B
Elixir
14 lines
304 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
|