Slide 45
Slide 45 text
mkaszubowski94
defmodule MyApp.Job do
use Ecto.Schema
schema "jobs" do
field :name, :string
field :description, :string
field :image_url, :string
field :paid, :boolean
field :slug, :string
field :started, :boolean
field :notification_sent, :boolean
field :price, :integer
field :datetime, :utc_datetime
belongs_to :creator, ModularElixir.User
belongs_to :contractor, ModularElixir.User
end
end