cannery/priv/repo/migrations/20230331031737_add_lot_numb...

10 lines
171 B
Elixir

defmodule Cannery.Repo.Migrations.AddLotNumberToPacks do
use Ecto.Migration
def change do
alter table(:packs) do
add :lot_number, :string
end
end
end