mirror of
https://github.com/jtomchak/akkoma.git
synced 2025-01-18 21:56:04 +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
|