move staging to container

This commit is contained in:
2025-01-31 23:44:11 -05:00
parent 2e6e26006d
commit 3eda522903
48 changed files with 948 additions and 899 deletions

View File

@ -0,0 +1,13 @@
defmodule Cannery.Repo.Migrations.MoveStagedToContainers do
use Ecto.Migration
def change do
alter table(:packs) do
remove :staged
end
alter table(:containers) do
add :staged, :boolean, default: false
end
end
end