cannery/priv/repo/migrations/20230331004825_rename_shot_...

20 lines
378 B
Elixir

defmodule Cannery.Repo.Migrations.RenameShotGroupsToShotRecords do
use Ecto.Migration
def up do
drop index(:shot_groups, [:user_id, :pack_id])
flush()
rename table(:shot_groups), to: table(:shot_records)
end
def down do
rename table(:shot_records), to: table(:shot_groups)
flush()
create index(:shot_groups, [:user_id, :pack_id])
end
end