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

8 lines
172 B
Elixir

defmodule Cannery.Repo.Migrations.RenameShotGroupsToShotRecords do
use Ecto.Migration
def change do
rename table(:shot_groups), to: table(:shot_records)
end
end