move staging to container
This commit is contained in:
@ -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
|
Reference in New Issue
Block a user