Current section

Files

Jump to
curator priv templates curator.database_authenticatable.install migration.exs
Raw

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