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/community_tool.ex
defmodule Ami.CommunityTool do
use Ecto.Schema
alias Ami.{
Community,
Tool
}
schema "community_tools" do
field(:position, :integer)
belongs_to(:community, Community)
belongs_to(:tool, Tool)
end
end