mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-02 14:44:13 +00:00
13 lines
245 B
Elixir
13 lines
245 B
Elixir
defmodule Pleroma.Repo.Migrations.CreateUserInviteTokens do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
create table(:user_invite_tokens) do
|
|
add :token, :string
|
|
add :used, :boolean, default: false
|
|
|
|
timestamps()
|
|
end
|
|
end
|
|
end
|