Packages
Support password based sign-in by comparing the password to a hashed password
Current section
Files
Jump to
Current section
Files
curator_database_authenticatable
priv
templates
curator_database_authenticatable.install
migration.exs
priv/templates/curator_database_authenticatable.install/migration.exs
defmodule <%= base %>.Repo.Migrations.Create<%= scoped %>CuratorDatabaseAuthenticatable do
use Ecto.Migration
def change do
alter table(:<%= plural %>) do
add :password_hash, :string
end
end
end