Current section
Files
Jump to
Current section
Files
priv/templates/curator.database_authenticatable.install/migration.exs
defmodule <%= inspect schema.repo %>.Migrations.AddDatabaseAuthenticatableToUsers do
use Ecto.Migration
def change do
alter table(:users) do
add(:password_hash, :string)
end
end
end