cannery/priv/repo/migrations/20230331015554_rename_ammo_...

9 lines
209 B
Elixir

defmodule Cannery.Repo.Migrations.RenameAmmoTypeToType do
use Ecto.Migration
def change do
rename table(:ammo_types), to: table(:types)
rename table(:packs), :ammo_type_id, to: :type_id
end
end