defmodule Bright.Repo.Migrations.AddIdenticon do use Ecto.Migration def change do alter table(:users) do add :identicon_seed, :string, null: false, default: "aaaaaaaa" end end end