move staging to container

This commit is contained in:
2025-01-31 23:44:11 -05:00
parent 61d5218b55
commit 704271a0f8
48 changed files with 985 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