Current section

Files

Jump to
ami lib ami section_tool.ex
Raw

lib/ami/section_tool.ex

defmodule Ami.SectionTool do
use Ecto.Schema
# import Ecto.{
# Query
# }
alias Ami.{
# Repo,
Section,
Tool
}
schema "section_tools" do
field(:tool_position, :integer)
belongs_to(:section, Section)
belongs_to(:tool, Tool)
end
end