mirror of
https://git.rape.pet/ulith/amputoma.git
synced 2025-02-24 21:53:59 +01:00
12 lines
261 B
Elixir
12 lines
261 B
Elixir
defmodule Pleroma.Repo.Migrations.CreateUserInviteTokens do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
create_if_not_exists table(:user_invite_tokens) do
|
|
add(:token, :string)
|
|
add(:used, :boolean, default: false)
|
|
|
|
timestamps()
|
|
end
|
|
end
|
|
end
|