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

10 lines
171 B
Elixir
Raw Normal View History

2023-03-30 23:35:01 -04:00
defmodule Cannery.Repo.Migrations.AddLotNumberToPacks do
use Ecto.Migration
def change do
alter table(:packs) do
add :lot_number, :string
end
end
end