Current section

Files

Jump to
ami lib ami package_tool_kit.ex
Raw

lib/ami/package_tool_kit.ex

defmodule Ami.PackageToolKit do
use Ecto.Schema
alias Ami.{
Package,
Toolkit
}
schema "package_tool_kits" do
field(:created_at, :utc_datetime)
field(:updated_at, :utc_datetime)
belongs_to(:package, Package)
belongs_to(:toolkit, Toolkit)
end
end