mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-01 14:21:10 +00:00
13 lines
261 B
Elixir
13 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
|