2018-10-11 17:37:39 +02:00
|
|
|
defmodule Mobilizon.Repo.Migrations.Guardian.DB do
|
2018-01-13 23:33:03 +01:00
|
|
|
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
|