Files
Thelonius Kort cbea9450e4 Add Autor schema
2023-03-02 23:13:32 +01:00

14 lines
271 B
Elixir

defmodule Outlook.Public.Autor do
use Ecto.Schema
alias Outlook.Public.Artikel
embedded_schema do
field :name, :string
field :description, :string
field :homepage_name, :string
field :homepage_url, :string
has_many :artikel, Artikel
end
end