mirror of
https://github.com/jtomchak/akkoma.git
synced 2025-01-19 06:06:05 +01:00
12 lines
259 B
Elixir
12 lines
259 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
|