defmodule DaProductApp.Repo.Migrations.AddPosCodeToProviders do use Ecto.Migration def change do alter table(:providers) do add :pos_code, :string end end end