defmodule Hostas.Repo.Migrations.AddTokenField do use Ecto.Migration def change do alter table(:tokens) do add :token, :string end end end