23 lines
711 B
Elixir
23 lines
711 B
Elixir
defmodule Cannery.Repo.Migrations.CreateAmmoGroups do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
create table(:ammo_groups, primary_key: false) do
|
|
add :id, :binary_id, primary_key: true
|
|
add :count, :integer
|
|
add :price_paid, :float
|
|
add :notes, :text
|
|
|
|
add :ammo_type_id, references(:ammo_types, on_delete: :delete_all, type: :binary_id)
|
|
add :container_id, references(:containers, on_delete: :nothing, type: :binary_id)
|
|
add :user_id, references(:users, on_delete: :delete_all, type: :binary_id)
|
|
|
|
timestamps()
|
|
end
|
|
|
|
create index(:ammo_groups, [:ammo_type_id])
|
|
create index(:ammo_groups, [:container_id])
|
|
create index(:ammo_groups, [:user_id])
|
|
end
|
|
end
|