Current section
Files
Jump to
Current section
Files
guardian_db
CHANGELOG.md
CHANGELOG.md
# v 0.4.0
* Update deps to use higher level of postgrex
* Add the typ field
When migrating form 0.3.0 to 0.4.0 you'll need to run a migration to add the typ
field.
```elixir
alter table(:guardian_tokens) do
add :typ, :string
end
```
# v 0.3.0
Update the schema to use a map for claims.
To update you'll need to change your schema.
```
mix ecto.gen.migration update_guardian_db_tokens
alter table(:guardian_tokens) do
remove :claims
add :claims, :map
end
```
# V 0.1.0
Initial release