Packages
ami_models
0.1.0
Package containing all AMI Models shared between micro-services.
Retired package: Deprecated - faulty
Current section
Files
Jump to
Current section
Files
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