defmodule Hostas.Repo.Migrations.CreateDenizens do use Ecto.Migration def change do create table(:denizens) do add :name, :string add :handle, :string add :password, :string timestamps() end end end