mirror of
https://github.com/kevin-DL/phoenix_api_template.git
synced 2026-01-11 10:44:32 +00:00
18 lines
445 B
Elixir
18 lines
445 B
Elixir
defmodule PhoenixApiTemplate.Repo.Migrations.CreateGuardianDBTokensTable do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
create table(:guardian_tokens, primary_key: false) do
|
|
add(:jti, :string, primary_key: true)
|
|
add(:aud, :string, primary_key: true)
|
|
add(:typ, :string)
|
|
add(:iss, :string)
|
|
add(:sub, :string)
|
|
add(:exp, :bigint)
|
|
add(:jwt, :text)
|
|
add(:claims, :map)
|
|
timestamps()
|
|
end
|
|
end
|
|
end
|